AWS redshift documentation change
Summary
Added resource tagging to AWS Secrets Manager secret, IAM role, and Redshift Serverless resources during creation.
Security assessment
Adding tags improves resource management and cost tracking but doesn't address security vulnerabilities or document security features. Tags themselves aren't security controls.
Diff
diff --git a/redshift/latest/mgmt/example_redshift_GettingStarted_038_section.md b/redshift/latest/mgmt/example_redshift_GettingStarted_038_section.md index f671ae950..d9fe2fede 100644 --- a//redshift/latest/mgmt/example_redshift_GettingStarted_038_section.md +++ b//redshift/latest/mgmt/example_redshift_GettingStarted_038_section.md @@ -128 +128,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --secret-string "{\"username\":\"$username\",\"password\":\"$password\"}" 2>&1) + --secret-string "{\"username\":\"$username\",\"password\":\"$password\"}" \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=redshift-serverless 2>&1) @@ -346,0 +348,2 @@ 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=redshift-serverless @@ -365 +368,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --db-name "$DB_NAME" 2>&1) + --db-name "$DB_NAME" \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=redshift-serverless 2>&1) @@ -386 +390,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - --base-capacity 8 2>&1) + --base-capacity 8 \ + --tags Key=project,Value=doc-smith Key=tutorial,Value=redshift-serverless 2>&1)