[aws]s3 버킷 권한 확대

코드왕·2023년 8월 28일
0

AWS 에서 s3에 그림파일 넣고 권한 늘리기

{
	"Version": "2012-10-17",
	"Statement": [
		{
			"Sid": "Stmt1405592139000",
			"Effect": "Allow",
			"Principal": "*",
			"Action": "s3:*",
			"Resource": [
				"arn:aws:s3:::freepeopleimage/*",
				"arn:aws:s3:::freepeopleimage"
			]
		}
	]
}

profile
CODE DIVE!

0개의 댓글