선 밖에 선 자유인

AWS Access IP 제한 본문

IT/System & Network

AWS Access IP 제한

Hotman 2018. 3. 7. 12:21

https://docs.aws.amazon.com/ko_kr/IAM/latest/UserGuide/reference_policies_examples_aws_deny-ip.html


{

  "Version": "2012-10-17",

  "Statement": {

    "Effect": "Deny",

    "Action": "*",

    "Resource": "*",

    "Condition": {"NotIpAddress": {"aws:SourceIp": [

      "192.0.2.0/24",

      "203.0.113.0/24"

    ]}}

  }

}


Comments