12345678910111213141516171819202122232425 |
- {
- "Version": "2012-10-17",
- "Statement": [
- {
- "Effect": "Allow",
- "Action": [
- "cloudwatch:PutMetricData",
- "ec2:DescribeVolumes",
- "ec2:DescribeTags",
- "logs:PutLogEvents",
- "logs:DescribeLogStreams",
- "logs:DescribeLogGroups",
- "logs:CreateLogStream"
- ],
- "Resource": "*"
- },
- {
- "Effect": "Allow",
- "Action": [
- "ssm:GetParameter"
- ],
- "Resource": "${ssm_parameter_arn}/*"
- }
- ]
- }
|