Skip to content

Commit e1f9c25

Browse files
fix: spelling
1 parent 6eba400 commit e1f9c25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A CDK App represents the root of our infrastructure as code, an entry point of o
2727

2828
### Stacks (CloudFormation Stacks)
2929

30-
In CDK, a Stack is the unit of deployment. It represents a single Cloudformation Stack, which is a collection of resources that are deployed together. A Stack is a root Construct that contains multiple Constructs, which represent the actual cloud components. An App can have multiple Stacks, each representing a separate deployment unit. Use Stacks to group resources that should be deployed and destroyed together.
30+
In CDK, a Stack is the unit of deployment. It represents a single CloudFormation Stack, which is a collection of resources that are deployed together. A Stack is a root Construct that contains multiple Constructs, which represent the actual cloud components. An App can have multiple Stacks, each representing a separate deployment unit. Use Stacks to group resources that should be deployed and destroyed together.
3131

3232
### Constructs (Cloud Components)
3333

@@ -44,7 +44,7 @@ Here's a simple analogy to help illustrate these concepts:
4444
Here's a simple diagram to illustrate the relationships between these concepts:
4545
![aws cdk concepts](/images/blog/infrastructure-as-code-with-aws-cdk/aws-cdk-concepts.png)
4646

47-
As we discussed about CDK, there is much more information available in the official CDK documentation. Coming back to the main point of the blog, why did I choose the CDK as the best option for my situation? So, what was the scenario?
47+
As we discussed of CDK, there is much more information available in the official CDK documentation. Coming back to the main point of the blog, why did I choose the CDK as the best option for my situation? So, what was the scenario?
4848

4949
## The Scenario: Deploying Applications with Isolation and Scale
5050

@@ -117,4 +117,4 @@ It's recommended to use generated resource names instead of physical names defin
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)