[AWS S3] 버킷 권한 설정
기존
{
"Version": "2012-10-17",
"Id": "{yourId}",
"Statement": [
{
"Sid": "{yourSid}",
"Effect": "Allow",
"Principal": {
"AWS": "{yourPrincipal}"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::{yourBucketName}/*"
}
]
}
변경
{
"Version": "2012-10-17",
"Id": "Policy1577077078140",
"Statement": [
{
"Sid": "Stmt1577076944244",
"Effect": "Allow",
"Principal": "*", // 여기 변경
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::azfinancial/*"
}
]
}
- 기존에 올린거 다 public으로 변경해 주세욤
참고
- https://zamezzz.tistory.com/299
- https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html#example-bucket-policies-use-case-2
Author And Source
이 문제에 관하여([AWS S3] 버킷 권한 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@godkimchichi/AWS-S3-버킷-권한-설정
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
"Version": "2012-10-17",
"Id": "{yourId}",
"Statement": [
{
"Sid": "{yourSid}",
"Effect": "Allow",
"Principal": {
"AWS": "{yourPrincipal}"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::{yourBucketName}/*"
}
]
}
{
"Version": "2012-10-17",
"Id": "Policy1577077078140",
"Statement": [
{
"Sid": "Stmt1577076944244",
"Effect": "Allow",
"Principal": "*", // 여기 변경
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::azfinancial/*"
}
]
}
- 기존에 올린거 다 public으로 변경해 주세욤
참고
- https://zamezzz.tistory.com/299
- https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html#example-bucket-policies-use-case-2
Author And Source
이 문제에 관하여([AWS S3] 버킷 권한 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@godkimchichi/AWS-S3-버킷-권한-설정
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Author And Source
이 문제에 관하여([AWS S3] 버킷 권한 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@godkimchichi/AWS-S3-버킷-권한-설정저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)