Last active
August 5, 2022 08:33
-
-
Save joshuaquek/9d8ed4b97ddbb2581393e5a8a7944581 to your computer and use it in GitHub Desktop.
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
Summary: IAM Policy for Elastic's AWS Integration Module found here - https://docs.elastic.co/integrations/aws#aws-permissions |
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": [ | |
"s3:GetObject", | |
"sts:AssumeRole", | |
"tag:GetResources", | |
"ec2:DescribeInstances", | |
"rds:ListTagsForResource", | |
"ec2:DescribeRegions", | |
"rds:DescribeDBInstances", | |
"sns:ListTopics", | |
"iam:ListAccountAliases", | |
"sts:GetCallerIdentity", | |
"sqs:ChangeMessageVisibility", | |
"sqs:DeleteMessage", | |
"sqs:ListOueues", | |
"sqs:ReceiveMessage", | |
"cloudwatch:GetMetricData", | |
"cloudwatch:ListMetrics" | |
], | |
"Resource": "*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment