Skip to content

Instantly share code, notes, and snippets.

@goetzc
Last active January 17, 2019 17:49
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 goetzc/7dc14be00d93822e12bb6e90632dff0e to your computer and use it in GitHub Desktop.
Save goetzc/7dc14be00d93822e12bb6e90632dff0e to your computer and use it in GitHub Desktop.
AWS IAM policy for CloudWatch monitoring scripts
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"cloudwatch:PutMetricData",
"cloudwatch:GetMetricStatistics",
"cloudwatch:ListMetrics",
"ec2:DescribeTags"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment