Created
January 15, 2022 06:34
-
-
Save amanjuman/607905711fea4206d67f5546235afbb6 to your computer and use it in GitHub Desktop.
AWS Account to Account Route53 Domain Transfer Cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initiate Domain Transfer | |
aws route53domains transfer-domain-to-another-aws-account --domain-name yourdomain.tld --account-id 123456789101 | |
# Cancel Domain Transfer | |
aws route53domains cancel-domain-transfer-to-another-aws-account --domain-name yourdomain.tld | |
{ | |
"OperationId": "MNOP-MNOP-MNOP-MNOP-MNOP", | |
"Password": "XYZXYZXYZXYZ" | |
} | |
# Accept Domain Transfer | |
aws route53domains accept-domain-transfer-from-another-aws-account --domain-name yourdomain.tld --password "XYZXYZXYZXYZ" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment