AWS Security ChangesHomeSearch

AWS code-library documentation change

Service: code-library · 2026-05-04 · Documentation low

File: code-library/latest/ug/bash_2_sfn_code_examples.md

Summary

Added IAM role tagging and tags parameter to Step Functions state machine creation

Security assessment

Added tags (Key=project,Value=doc-smith) to an IAM role and Step Functions state machine. Tagging improves resource management but doesn't mitigate vulnerabilities, introduce security features, or document security practices. No evidence of security fixes or security-related context in changes.

Diff

diff --git a/code-library/latest/ug/bash_2_sfn_code_examples.md b/code-library/latest/ug/bash_2_sfn_code_examples.md
index 0e3ff4322..fbb23a9b4 100644
--- a//code-library/latest/ug/bash_2_sfn_code_examples.md
+++ b//code-library/latest/ug/bash_2_sfn_code_examples.md
@@ -421,0 +422 @@ 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-step-functions-gs
@@ -486 +487,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru
-      --type STANDARD 2>&1)
+      --type STANDARD \
+      --tags Key=project,Value=doc-smith Key=tutorial,Value=aws-step-functions-gs 2>&1)