Skip to content

Commit 91a176e

Browse files
committed
DOCSP-53434 -- Integrated feedback
1 parent 089840e commit 91a176e

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

src/l1-resources/cluster/README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ The official [MongoDB Atlas](https://www.mongodb.com/) AWS CDK resource for Node
99

1010
## Description
1111

12-
<<<<<<< HEAD
13-
The cluster resource provides access to your cluster configurations and enable you to create, edit, and delete clusters. The cluster resource requires your Project ID.
14-
=======
15-
The cluster resource provides access to your cluster configurations and enable you to create, edit and delete clusters. The cluster resource requires your Project ID.
16-
>>>>>>> 124160b (DOCSP-53434 -- corrections)
12+
The cluster resource provides access to your cluster configurations and enables you to create, edit, and delete clusters. The cluster resource requires your Project ID.
1713

1814
## MongoDB Atlas API Docs
1915

@@ -41,8 +37,8 @@ aws cloudformation activate-type \
4137

4238
You can find more information about activating this type in the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html).
4339

44-
4540
## Example: [cluster.ts](../../../examples/l1-resources/cluster.ts)
41+
4642
```ts
4743
import { CfnCluster } from 'awscdk-resources-mongodbatlas';
4844

@@ -94,7 +90,12 @@ const clusterRes = new CfnCluster(this, 'ClusterResource', {
9490

9591
```
9692

97-
You can also create a flex cluster using CfnCluster, for example:
93+
## Flex Clusters
94+
95+
We now support flex clusters.
96+
97+
You can create a flex cluster using ``CfnCluster``, as the following example shows:
98+
9899
```ts
99100
import { CfnCluster, AdvancedRegionConfigProviderName } from 'awscdk-resources-mongodbatlas';
100101

@@ -113,11 +114,9 @@ const flexClusterRes = new CfnCluster(this, 'FlexClusterResource', {
113114
});
114115
```
115116

116-
## Flex Clusters
117-
118-
We now support flex clusters. See the [flex-cluster Read Me file](https://github.com/mongodb/awscdk-resources-mongodbatlas/blob/main/src/l1-resources/flex-cluster/README.md) for more details.
117+
*Note:* Upgrades to or from flex clusters are currently unavailable. We expect to support upgrades to or from flex clusters in the forseeable future.
119118

120-
*Note:* Although we now support flex clusters, upgrades to or from flex clusters are currently unavailable. We expect to support upgrades to or from flex clusters in the forseeable future.
119+
*Important:* Use the `CfnCluster` resource instead of the `CfnFlexCluster` resource to create and manage flex clusters. `CfnCluster` supports flex clusters and future upgrades will only be available through this resource. For more information, see the [`CfnCluster` README](link-to-readme).
121120

122121
## Feedback
123122

0 commit comments

Comments
 (0)