Cloud Infra Architecture (AWS)/AWS Organization

[AWS Organization] Route53 domain 구매 방지

seongduck 2024. 2. 11. 20:05

조직단위에서 도메인을 관리하므로 개개인 조직원이 구매할 수 없도록 방지할 수 있다.

 

1) SCP 문법

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "scplimitroute53domainbuy",
      "Effect": "Deny",
      "Action": [
        "route53domains:RegisterDomain",
        "route53domains:*"
      ],
      "Resource": "*"
    }
  ]
}

 

2) 테스트