Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pwelch/9b9d267a7feccb441d5166e3151266f2 to your computer and use it in GitHub Desktop.
Save pwelch/9b9d267a7feccb441d5166e3151266f2 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