Skip to content

Instantly share code, notes, and snippets.

@rpherrera
Created September 18, 2015 18:02
Show Gist options
  • Save rpherrera/90a39d00c18daea2ecb7 to your computer and use it in GitHub Desktop.
Save rpherrera/90a39d00c18daea2ecb7 to your computer and use it in GitHub Desktop.
cloud8 iam policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:Describe*",
"ec2:CreateImage",
"ec2:DeregisterImage",
"ec2:DeleteSnapshot",
"ec2:ModifyInstanceAttribute",
"ec2:AssociateAddress",
"ec2:RebootInstances",
"ec2:StartInstances",
"ec2:StopInstances",
"rds:Describe*",
"rds:Download*",
"rds:ListTagsForResource",
"rds:ModifyDBInstance*",
"rds:CreateDBSnapshot*",
"rds:DeleteDBSnapshot",
"sns:Describe*",
"sns:ListSubscriptions*",
"sns:CreateTopic",
"sns:Subscribe",
"sns:ConfirmSubscription",
"rds:CreateEventSubscription",
"elasticache:Describe*",
"elasticloadbalancing:Describe*",
"autoscaling:Describe*",
"cloudtrail:DescribeTrails",
"cloudtrail:GetTrailStatus",
"cloudtrail:Look*",
"cloudfront:Describe*",
"redshift:Describe*",
"tag:get*",
"trustedadvisor:Describe*",
"iam:Get*",
"iam:List*",
"iam:Generate*",
"route53:Get*",
"route53:List*",
"cloudwatch:Get*",
"cloudwatch:List*"
],
"Resource": "*"
},
{
"Action": [
"s3:ListAllMyBuckets"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::*"
},
{
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::cloud8-reports"
},
{
"Action": [
"s3:GetObject"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::cloud8-reports/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment