Forked from asjadathick/Metricbeat aws module permissions
Created
May 28, 2020 08:44
-
-
Save wodCZ/fdd1ac5218053066b0a7255e08a53b9d to your computer and use it in GitHub Desktop.
AWS IAM policy for metricbeat aws module metricsets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"ec2:DescribeRegions", | |
"cloudwatch:GetMetricData", | |
"cloudwatch:ListMetrics", | |
"tag:getResources", | |
"sts:GetCallerIdentity", | |
"iam:ListAccountAliases", | |
"ec2:DescribeInstances", | |
"rds:DescribeDBInstances", | |
"sqs:ListQueues" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment