LoginSignup
0
0

More than 5 years have passed since last update.

ECS service discovery によって作られた Route53 zone を削除する

Posted at
aws --profile project-pacify --region ap-northeast-1 servicediscovery list-namespaces
{
    "Services": [
        {
            "Id": "srv-szht3ggfxhxgu2if",
            "Arn": "arn:aws:servicediscovery:ap-northeast-1:845095852924:service/srv-szht3ggfxhxgu2if",
            "Name": "pacify-service"
        }
    ]
}

aws --profile project-pacify --region ap-northeast-1 servicediscovery delete-service --id=srv-szht3ggfxhxgu2if


aws --profile project-pacify --region ap-northeast-1 servicediscovery list-namespaces
{
    "Namespaces": [
        {
            "Id": "ns-t3u6vsx72jozucai",
            "Arn": "arn:aws:servicediscovery:ap-northeast-1:845095852924:namespace/ns-t3u6vsx72jozucai",
            "Name": "local",
            "Type": "DNS_PRIVATE"
        }
    ]
}
aws --profile project-pacify --region ap-northeast-1 servicediscovery delete-namespace --id=ns-t3u6vsx72jozucai
{
    "OperationId": "pckrnx3xdd5jziyqvanrx6ll3uud3gwa-jt2ga4j5"
}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0