1
0

More than 1 year has passed since last update.

s3 のバケットを全公開にする

Last updated at Posted at 2022-03-12

AWS の勉強を始めたので、勉強した全てを細かくメモしていくことを決意

s3 のバケットを全公開にする

全公開したい対象のバケットを選択

s3_1.png

アクセス許可タブをクリック

s3_2.png

バケットポリシー を編集

「対象バケット名」に公開したいバケット名を入力する

{
	"Version": "2012-10-17",
	"Statement": [
		{
			"Sid": "AddPerm",
			"Effect": "Allow",
			"Principal": "*",
			"Action": "s3:GetObject", 
			"Resource": "arn:aws:s3:::対象バケット名/*"
		}
	]
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0