Skip to content

Instantly share code, notes, and snippets.

@joelparker
Last active May 16, 2016 14:37
Show Gist options
  • Save joelparker/0429f8c5547c47ad35a4 to your computer and use it in GitHub Desktop.
Save joelparker/0429f8c5547c47ad35a4 to your computer and use it in GitHub Desktop.
IAM Group Policy for Arq4 Backup on S3
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1416260474000",
"Effect": "Allow",
"Action": [
"s3:CreateBucket",
"s3:GetLifecycleConfiguration",
"s3:ListBucket",
"s3:PutLifecycleConfiguration"
],
"Resource": [
"arn:aws:s3:::ARQ-BUCKET-NAME"
]
},
{
"Sid": "Stmt1416260680000",
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::ARQ-BUCKET-NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment