본문 바로가기
[AWS]/AWS 활용

[AWS][활용][S3] 특정 IP만 사용 가능하도록 설정

by METAVERSE STORY 2022. 5. 26.
반응형
728x170

 

1. S3 버킷 설정

2. 설정 추가

{
   "Version":"2012-10-17",
   "Id":"S3PolicyId1",
   "Statement":[
      {
         "Sid":"IPAllow",
         "Effect":"Allow",
         "Principal":"*",
         "Action":"s3:*",
         "Resource":"arn:aws:s3:::examplebucket/*",
         "Condition":{
            "NotIpAddress":{
               "aws:SourceIp":"0.0.0.0/32"
            },
            "IpAddress":{
               "aws:SourceIp":[
                  "54.240.143.0/24",
                  "54.241.143.0/24"
               ]
            }
         }
      }
   ]
}

관련문서

 

 

 

 

 

 

https://akageun.github.io/2018/06/19/aws-s3-ip-allow.html

반응형
그리드형

댓글