AWS AmazonCloudWatch medium security documentation change
Summary
Added missing commas in JSON array and fixed policy syntax
Security assessment
Syntax correction prevents potential IAM policy failures that could lead to unintended access. Invalid JSON might have caused misconfigured cross-account permissions.
Diff
diff --git a/AmazonCloudWatch/latest/monitoring/Investigations-cross-account.md b/AmazonCloudWatch/latest/monitoring/Investigations-cross-account.md index bd7647fb9..ea2404c50 100644 --- a//AmazonCloudWatch/latest/monitoring/Investigations-cross-account.md +++ b//AmazonCloudWatch/latest/monitoring/Investigations-cross-account.md @@ -63,2 +63,2 @@ JSON - "arn:aws:iam::777777777777:role/AIOps-CrossAccountInvestigationRole" - "arn:aws:iam::555555555555:role/AIOps-CrossAccountInvestigationRole" + "arn:aws:iam::777777777777:role/AIOps-CrossAccountInvestigationRole", + "arn:aws:iam::555555555555:role/AIOps-CrossAccountInvestigationRole", @@ -121,2 +121,2 @@ JSON - "arn:aws:iam::777777777777:role/source_role_name_1" - "arn:aws:iam::555555555555:role/source_role_name_2" + "arn:aws:iam::777777777777:role/source_role_name_1", + "arn:aws:iam::555555555555:role/source_role_name_2", @@ -161,0 +162 @@ JSON + }