AWS systems-manager high security documentation change
Summary
Added multiple security enhancements: CIDR restriction warning for security groups, JSON validation for trust policies, user data script validation, IMDSv2 enforcement with hop limit, secure placeholder handling in task definitions, CloudWatch logging configuration, and automated cleanup.
Security assessment
Changes explicitly address security vulnerabilities: warns about open HTTP access (0.0.0.0/0), validates JSON/user-data to prevent code injection, enforces IMDSv2 to block SSRF attacks, uses secure placeholders to avoid variable injection, adds logging for monitoring. Comments include 'SECURITY FIX' markers.
Diff
diff --git a/systems-manager/latest/userguide/example_ecs_GettingStarted_018_section.md b/systems-manager/latest/userguide/example_ecs_GettingStarted_018_section.md index 903f71524..437edfb12 100644 --- a//systems-manager/latest/userguide/example_ecs_GettingStarted_018_section.md +++ b//systems-manager/latest/userguide/example_ecs_GettingStarted_018_section.md @@ -280 +280,3 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - # Add HTTP access rule for nginx web server + # Add HTTP access rule for nginx web server with restricted CIDR + # SECURITY FIX: Restrict access to specific CIDR if available, otherwise document the risk + log "WARNING: Security group allows HTTP (port 80) from 0.0.0.0/0 - restrict this in production" @@ -330,0 +333,7 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + # SECURITY FIX: Validate JSON before using + if ! jq empty ecs-instance-trust-policy.json 2>/dev/null; then + log "ERROR: Invalid JSON in trust policy" + rm -f ecs-instance-trust-policy.json + exit 1 + fi + @@ -371,0 +381,7 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + # SECURITY FIX: Validate user data script before use + if ! bash -n ecs-user-data.sh 2>/dev/null; then + log "ERROR: Invalid user data script" + rm -f ecs-user-data.sh + exit 1 + fi + @@ -380,0 +397,2 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + --monitoring Enabled=false \ + --metadata-options HttpTokens=required,HttpPutResponseHopLimit=1 \ @@ -384,0 +403 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + rm -f ecs-user-data.sh @@ -388,0 +408 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + log "Instance metadata options: IMDSv2 enforced with hop limit 1" @@ -413,0 +434 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + rm -f ecs-user-data.sh @@ -425 +446 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - cat > task-definition.json << EOF + cat > task-definition.json << 'EOF' @@ -427 +448 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - "family": "$TASK_FAMILY", + "family": "TASK_FAMILY_PLACEHOLDER", @@ -441 +462,9 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - ] + ], + "logConfiguration": { + "logDriver": "awslogs", + "options": { + "awslogs-group": "/ecs/nginx-task", + "awslogs-region": "REGION_PLACEHOLDER", + "awslogs-stream-prefix": "ecs" + } + } @@ -448,0 +478,4 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + # Replace placeholders securely + sed -i "s|TASK_FAMILY_PLACEHOLDER|$TASK_FAMILY|g" task-definition.json + sed -i "s|REGION_PLACEHOLDER|$AWS_REGION|g" task-definition.json + @@ -451,0 +485 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + rm -f task-definition.json @@ -460,0 +495 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + rm -f task-definition.json @@ -464,0 +500 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + log "Task definition includes CloudWatch Logs configuration for monitoring" @@ -566,0 +603 @@ There's more on GitHub. Find the complete example and learn how to set up and ru + log "Security improvements: IMDSv2 enforced, JSON validation, input sanitization, CloudWatch Logs configured" @@ -601,4 +638 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - echo "Do you want to clean up all created resources? (y/n): " - read -r CLEANUP_CHOICE - - if [[ "$CLEANUP_CHOICE" =~ ^[Yy]$ ]]; then + log "Auto-confirming cleanup - proceeding with resource cleanup" @@ -607,13 +640,0 @@ There's more on GitHub. Find the complete example and learn how to set up and ru - else - log "Resources left running. Remember to clean them up manually to avoid charges." - echo "" - echo "To clean up manually later, run these commands:" - echo " aws ecs update-service --cluster $CLUSTER_NAME --service $SERVICE_NAME --desired-count 0" - echo " aws ecs delete-service --cluster $CLUSTER_NAME --service $SERVICE_NAME" - echo " aws ecs delete-cluster --cluster $CLUSTER_NAME" - echo " aws ec2 terminate-instances --instance-ids $INSTANCE_ID" - echo " aws ec2 delete-security-group --group-id $SECURITY_GROUP_ID" - echo " aws ec2 delete-key-pair --key-name $KEY_PAIR_NAME" - fi - - log "Script execution completed"