Skip to content

Instantly share code, notes, and snippets.

@joshuaquek
Last active August 5, 2022 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuaquek/9d8ed4b97ddbb2581393e5a8a7944581 to your computer and use it in GitHub Desktop.
Save joshuaquek/9d8ed4b97ddbb2581393e5a8a7944581 to your computer and use it in GitHub Desktop.
Summary: IAM Policy for Elastic's AWS Integration Module found here - https://docs.elastic.co/integrations/aws#aws-permissions
{
"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