Skip to content

Commit 8fdce20

Browse files
cjobermaierBrianMMcClaintunzor
authored
Apply suggestions from code review
Co-authored-by: Brian McClain <brianmmcclain@gmail.com> Co-authored-by: Anthony <russo555@gmail.com>
1 parent ab44646 commit 8fdce20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/well-architected-framework/docs/docs/optimize-systems/lifecycle-management/tag-cloud-resources.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ When you implement a tagging strategy, you gain the following benefits:
2222

2323
Consistent implementation of your tagging strategy helps you track infrastructure costs, manage resources, and ensure compliance. When you use an inconsistent tagging strategy, such as manual tagging, you may end up with resources with incorrect or missing tags.
2424

25-
When you manage your infrastructure with Terraform, you can define tags within your modules. Terraform will automatically apply these tags to all resources it creates.
25+
When you manage your infrastructure with Terraform, you can define tags within your configuration. Terraform will automatically apply these tags to all resources it creates.
2626

27-
The following is an example of tags defined in a Terraform module:
27+
The following creates an AWS EC2 instance and adds several tags to the resource:
2828

2929
```hcl
3030
resource "aws_instance" "web_server" {
@@ -42,9 +42,9 @@ resource "aws_instance" "web_server" {
4242
4343
```
4444

45-
The AWS and GCP Terraform providers let you add default tags to all resources they create, making it easier to implement a consistent tagging strategy across all the resources you manage with Terraform. You can then override these default tags on a per-resource basis. Default tags ensure that all resources have the minimum required tags.
45+
The AWS and GCP Terraform providers let you add default tags to all resources they create, making it easier to implement a consistent tagging strategy across the resources you manage with Terraform. Default tags ensure that all resources have the minimum required tags but you can override these default tags on a per-resource basis.
4646

47-
The following is an example of default tags:
47+
The following is an example using default tags:
4848

4949
```hcl
5050
@@ -64,7 +64,7 @@ provider "aws" {
6464
HashiCorp resources:
6565

6666
- AWS provider [resource tagging](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging)
67-
- [AWS default tags](https://developer.hashicorp.com/terraform/tutorials/aws/aws-default-tags)
67+
- [AWS default tags](/terraform/tutorials/aws/aws-default-tags)
6868
- [GCP default tags](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#default_labels-1)
6969
- Learn how to [configure default tags for AWS resources](/terraform/tutorials/aws/aws-default-tags)
7070

0 commit comments

Comments
 (0)