Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created June 3, 2024 22:17
Show Gist options
  • Save PaulieScanlon/f48d3f0c605b162127957208e09c25b2 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/f48d3f0c605b162127957208e09c25b2 to your computer and use it in GitHub Desktop.
Update S3 Bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::627917386332:role/paulie-dev-2023-github-action"
},
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::paulie-dev-db-backup",
"arn:aws:s3:::paulie-dev-db-backup/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment