Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an example IAM policy #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,29 @@ h1. FILES
- $HOME/.my.cnf := Default values for MySQL user and password are sought here in the standard format.
- $HOME/.awssecret := Default values for access key and secret access keys are sought here. Can be overridden by environment variables and command line options.

h1. IAM POLICY

The following policy can help you to set up the IAM user or role with appropriate permissions to run this program.

<pre>
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Action": [
"ec2:DeleteSnapshot",
"ec2:DescribeSnapshots"
],
"Resource": [
"*"
]
}
]
}
</pre>

h1. SEE ALSO

- Amazon EC2 := - Amazon EC2 EBS (Elastic Block Store) := - ec2-consistent-snapshot :=
Expand Down