-
-
Save pwelch/9b9d267a7feccb441d5166e3151266f2 to your computer and use it in GitHub Desktop.
IAM Group Policy for Arq4 Backup on S3
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": "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