Skip to content

Instantly share code, notes, and snippets.

@jasonrm
Last active August 29, 2015 14:01
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 jasonrm/ab37330361cac2dc5d0e to your computer and use it in GitHub Desktop.
Save jasonrm/ab37330361cac2dc5d0e to your computer and use it in GitHub Desktop.
Arq Backup Amazon S3/Glacier IAM
{
"Statement": [
{
"Effect": "Allow",
"Action": ["s3:GetBucketLocation", "s3:ListAllMyBuckets"],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": ["s3:*"],
"Resource": ["arn:aws:s3:::arq-*"]
},
{
"Effect": "Allow",
"Action": ["glacier:ListVaults"],
"Resource": "arn:aws:glacier:*:*:vaults/*"
},
{
"Effect": "Allow",
"Action": ["glacier:*"],
"Resource": "arn:aws:glacier:*:*:vaults/arq-*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment