AWS code-library documentation change
Summary
Added tagging to RDS security group, subnet group, secret, and DB instance
Security assessment
Changes implement resource tagging only. No security fixes or security feature documentation is introduced.
Diff
diff --git a/code-library/latest/ug/rds_example_rds_GettingStarted_036_section.md b/code-library/latest/ug/rds_example_rds_GettingStarted_036_section.md index a8279ef92..444be8f69 100644 --- a//code-library/latest/ug/rds_example_rds_GettingStarted_036_section.md +++ b//code-library/latest/ug/rds_example_rds_GettingStarted_036_section.md @@ -130 +130,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --vpc-id "$VPC_ID") + --vpc-id "$VPC_ID" \ + --tag-specifications 'ResourceType=security-group,Tags=[{Key=project,Value=doc-smith},{Key=tutorial,Value=rds-gs}]') @@ -162 +163,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --subnet-ids "$SUBNET1" "$SUBNET2") + --subnet-ids "$SUBNET1" "$SUBNET2" \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=rds-gs) @@ -175 +177,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --secret-string '{"username":"adminuser","password":"'"$(openssl rand -base64 16)"'"}') + --secret-string '{"username":"adminuser","password":"'"$(openssl rand -base64 16)"'"}' \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=rds-gs) @@ -206 +209,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --no-multi-az) + --no-multi-az \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=rds-gs)