AWS Security ChangesHomeSearch

AWS AmazonRDS documentation change

Service: AmazonRDS · 2026-05-04 · Documentation low

File: AmazonRDS/latest/UserGuide/example_rds_GettingStarted_036_section.md

Summary

Added tagging to resource creation commands in example code (security groups, subnet groups, secrets, DB instances)

Security assessment

Changes add organizational tags to resources. No security configurations, vulnerabilities, or security features are modified or documented.

Diff

diff --git a/AmazonRDS/latest/UserGuide/example_rds_GettingStarted_036_section.md b/AmazonRDS/latest/UserGuide/example_rds_GettingStarted_036_section.md
index e61d7d48f..29fb55e19 100644
--- a//AmazonRDS/latest/UserGuide/example_rds_GettingStarted_036_section.md
+++ b//AmazonRDS/latest/UserGuide/example_rds_GettingStarted_036_section.md
@@ -128 +128,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}]')
@@ -160 +161,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)
@@ -173 +175,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)
@@ -204 +207,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)