Skip to content

Commit 7a46dfb

Browse files
fix: grammer and spell check
1 parent e7b6c2d commit 7a46dfb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/blog/infrastructure-as-code-with-aws-cdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,19 +102,19 @@ To illustrate the challenge, let's consider an example. Suppose we have a bill g
102102
A Stack is the unit of deployment, meaning that everything within it is deployed together.
103103

104104
**Example: Machine Learning Model**
105-
A machine learning model can also be modeled as a Construct and deployed as a Stack. The Constructs that make up this model include an Amazon S3 bucket for storing training data, an Amazon SageMaker notebook instance for model development, and an Amazon SageMaker endpoint for model deployment. These Constructs can be composed into a single high-level Construct, such as MachineLearningModel. This Construct can then be instantiated in one or more tacks for deployment, depending on the environment (e.g., dev, prod, staging).
105+
A machine learning model can also be modeled as a Construct and deployed as a Stack. The Constructs that make up this model include an Amazon S3 bucket for storing training data, an Amazon SageMaker notebook instance for model development, and an Amazon SageMaker endpoint for model deployment. These Constructs can be composed into a single high-level Construct, such as MachineLearningModel. This Construct can then be instantiated in one or more stacks for deployment, depending on the environment (e.g., dev, prod, staging).
106106

107107
### Avoid Changing the Logical ID
108108

109-
The logical ID is a unique identifier generated by AWS CDK for each resource in our Stack. Changing the logical ID of a stateful resource can lead to unintended consequences, such as
109+
The Logical ID is a unique identifier generated by AWS CDK for each resource in our Stack. Changing the logical ID of a stateful resource can lead to unintended consequences, such as
110110

111-
* **Resource recreation**: If the logical ID changes, AWS CDK may recreate the resource, resulting in data loss or inconsistencies.
111+
* **Resource recreation**: If the Logical ID changes, AWS CDK may recreate the resource, resulting in data loss or inconsistencies.
112112
* **Resource conflicts**: Changing the logical ID can cause conflicts with existing resources, leading to errors or unexpected behavior.
113113

114114
### Use Generated Resource Names
115115

116-
It's recommended to use generated resource names instead of physical names defined while resource creation which can lead to several issues, including: Resource recreation, Resource conflicts, Tight coupling
116+
It's recommended to use generated resource names instead of physical names defined while resource creation which, can lead to several issues, including: Resource recreation, Resource conflicts, tight coupling
117117

118118
## Conclusion
119119

120-
Our experience with AWS CDK, we were able to achieve true "infrastructure as code." Our CDK codebase became the single source of truth for our infrastructure, allowing us to manage and version-control our environments with ease. This approach also enabled us to automate our deployments, reduce manual errors, and improve our overall efficiency.
120+
Our experience With AWS CDK, we were able to achieve true "infrastructure as code." Our CDK codebase became the single source of truth for our infrastructure, allowing us to manage and version-control our environments with ease. This approach also enabled us to automate our deployments, reduce manual errors, and improve our overall efficiency.

0 commit comments

Comments
 (0)