0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWS Domain移管を自分でやる際は、CLIのRegion指定忘れずに

Posted at

AWS Route53 で、別のAWSアカウントへドメイン移管したい場合の話です。

AWS CLIでregion指定忘れると

aws route53domains transfer-domain-to-another-aws-account --domain-name example.com --account-id 123456789012

下記のエラー。

Could not connect to the endpoint URL: "https://route53domains.ap-northeast-1.amazonaws.com/"

Route53のドメイン登録のリクエスト関連のAPI ENDPOINTは 米国東部 (バージニア北部)にしかない。という事らしい。
https://docs.aws.amazon.com/ja_jp/general/latest/gr/r53.html

なので、Regionとしてus-east-1を指定しましょう、というお話でした。

aws route53domains transfer-domain-to-another-aws-account --domain-name example.com --account-id 123456789012 --region us-east-1
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?