AWS IAM Policy JSON Example
This JSON snippet defines an IAM policy for AWS that allows specific logging actions. The actions included grant permissions to describe log groups, streams, and retrieve log events. This is useful for managing access to AWS CloudWatch Logs.{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:DescribeLogGroups", "logs:DescribeLogStreams", "logs:GetLogEvents", "logs:FilterLogEvents", "logs:ListTagsLogGroup" ], "Resource": "*" } ] }
Leave a Comment