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.
 avatar
user_0659028
json
a month ago
329 B
2
Indexable
{ 
  "Version": "2012-10-17", 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "logs:DescribeLogGroups", 
        "logs:DescribeLogStreams", 
        "logs:GetLogEvents", 
        "logs:FilterLogEvents", 
        "logs:ListTagsLogGroup" 
      ], 
      "Resource": "*" 
    } 
  ] 
}
Leave a Comment