1. DNS/ManagedDNS/awsdns/public_host_zone

https://docs.aws.amazon.com/ja_jp/Route53/latest/DeveloperGuide/AboutHZWorkingWith.html

1.1. create hosted zone

https://docs.aws.amazon.com/cli/latest/reference/route53/create-hosted-zone.html

1.2. version 2

https://awscli.amazonaws.com/v2/documentation/api/latest/reference/route53/create-hosted-zone.html

  create-hosted-zone
--name <value>
[--vpc <value>]
--caller-reference <value>
[--hosted-zone-config <value>]
[--delegation-set-id <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]

--delegation-set-id <value>

これにより、NSを(間接的に)指定できるようだ。-- ToshinoriMaeno 2021-12-22 06:23:47

--delegation-set-id (string)

    If you want to associate a reusable delegation set with this hosted zone, the ID that Amazon Route 53 assigned to the reusable delegation set when you created it. For more information about reusable delegation sets, see CreateReusableDelegationSet .

1.3. CreateReusableDelegationSet

https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html

1.4. Deleting a public hosted zone

https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html

https://docs.aws.amazon.com/ja_jp/Route53/latest/DeveloperGuide/DeleteHostedZone.html

Important

If you delete a hosted zone, you can't undelete it. 

You must create a new hosted zone and update the name servers for your domain registration,
which can require up to 48 hours to take effect. 

In addition, if you delete a hosted zone, 
someone could hijack the domain and route traffic to their own resources using your domain name.

重要

ホストゾーンを削除した場合、復元することはできません。
新しいホストゾーンを作成して、ドメイン登録のネームサーバーを更新する必要があります。
更新が有効になるには、最大 48 時間かかることがあります。

さらに、ホストゾーンを削除すると、他のユーザーがお客様のドメイン名を使用してドメインをハイジャックし、
自分のリソースにトラフィックをルーティングする可能性があります。

MoinQ: DNS/ManagedDNS/awsdns/public_host_zone (last edited 2023-03-11 05:50:30 by ToshinoriMaeno)