Last active
March 28, 2018 15:59
-
-
Save bsodmike/5484303fe228694d10222be79d76da55 to your computer and use it in GitHub Desktop.
Useful AWS IAM Policies
This file contains hidden or 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": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:ChangePassword" | |
], | |
"Resource": [ | |
"arn:aws:iam::*:user/${aws:username}" | |
] | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:GetAccountPasswordPolicy" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
This file contains hidden or 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": [ | |
{ | |
"Action": [ | |
"ec2:DescribeInstanceStatus", | |
"ec2:DescribeInstances", | |
"ec2:StopInstances", | |
"ec2:TerminateInstances" | |
], | |
"Resource": [ | |
"*" | |
], | |
"Effect": "Allow" | |
} | |
] | |
} |
This file contains hidden or 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": "Stmt1497909240000", | |
"Effect": "Allow", | |
"Action": [ | |
"aws-portal:ViewAccount", | |
"aws-portal:ViewBilling", | |
"aws-portal:ViewUsage" | |
], | |
"Resource": [ | |
"*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment