Skip to content

Instantly share code, notes, and snippets.

@Twinuma
Last active December 19, 2015 10:19
Show Gist options
  • Select an option

  • Save Twinuma/5939322 to your computer and use it in GitHub Desktop.

Select an option

Save Twinuma/5939322 to your computer and use it in GitHub Desktop.
【TIPS】S3を使ったWebhosting時のバケットポリシーサンプル
{
"Id": "Policy1381219928568",
"Statement": [
{
"Sid": "Stmt1381219378364",
"Action": [
"s3:GetObject"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::your s3 bucket name/*",
"Principal": {
"AWS": [
"*"
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment