AWS Security ChangesHomeSearch

AWS sns documentation change

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

File: sns/latest/dg/example_config_service_GettingStarted_053_section.md

Summary

Added resource tagging commands for S3 bucket, SNS topic, IAM role, Config Recorder and Delivery Channel in AWS Config tutorial.

Security assessment

Tagging improvements for resource management don't address security vulnerabilities. No security features documented, only operational best practices.

Diff

diff --git a/sns/latest/dg/example_config_service_GettingStarted_053_section.md b/sns/latest/dg/example_config_service_GettingStarted_053_section.md
index 92d3af2b6..ed949e7a6 100644
--- a//sns/latest/dg/example_config_service_GettingStarted_053_section.md
+++ b//sns/latest/dg/example_config_service_GettingStarted_053_section.md
@@ -189,0 +190,3 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+        
+        aws s3api put-bucket-tagging --bucket "$S3_BUCKET_NAME" --tagging 'TagSet=[{Key=project,Value=doc-smith},{Key=tutorial,Value=aws-config-gs}]'
+        echo "Tags applied to S3 bucket"
@@ -203 +206 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
-    SNS_RESULT=$(aws sns create-topic --name "$TOPIC_NAME")
+    SNS_RESULT=$(aws sns create-topic --name "$TOPIC_NAME" --tags Key=project,Value=doc-smith Key=tutorial,Value=aws-config-gs)
@@ -234,0 +238,3 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+    aws iam tag-role --role-name "$ROLE_NAME" --tags Key=project,Value=doc-smith Key=tutorial,Value=aws-config-gs
+    echo "Tags applied to IAM role"
+    
@@ -323,0 +330,5 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+    if [ "$CREATED_NEW_CONFIG_RECORDER" = "true" ]; then
+        aws configservice tag-resource --resource-arn "arn:aws:config:${AWS_REGION}:${ACCOUNT_ID}:config-recorder/${CONFIG_RECORDER_NAME}" --tags Key=project,Value=doc-smith Key=tutorial,Value=aws-config-gs
+        echo "Tags applied to configuration recorder"
+    fi
+    
@@ -372,0 +384,3 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
+        
+        aws configservice tag-resource --resource-arn "arn:aws:config:${AWS_REGION}:${ACCOUNT_ID}:delivery-channel/${DELIVERY_CHANNEL_NAME}" --tags Key=project,Value=doc-smith Key=tutorial,Value=aws-config-gs
+        echo "Tags applied to delivery channel"