DEV Community

Tai Ha for AWS Community ASEAN

Posted on

1 1 1 1 1

Transfer Domain AWS to AWS Account

1. Prepare (Use AWS CLI)

1.1 Install AWS CLI lastest version into EC2
Attach policy AmazonRoute53FullAccess to EC2-ROLE

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

1.2 Or Use AWS CloudShell in AWS Console
https://aws.amazon.com/cloudshell/

2. Tranfer domain (Source Account)

2.1 Run command
aws route53domains transfer-domain-to-another-aws-account --domain-name {DomainName} --account-id {AccountDestinationID} --region=us-east-1

{
"OperationId": "aaaaaaaaa-bbbb-ccccc-dddd-eeeeeeeeeeee",
"Password": "xxxxxxxxx"
}

2.2 Cancel request
If you want to cancel transfer request, please run command below
aws route53domains cancel-domain-transfer-to-another-aws-account --domain-name {DomainName} --region=us-east-1

3. Except domain (Destination Account)

Run command
aws route53domains accept-domain-transfer-from-another-aws-account --domain-name {DomainName} --password {Password} --region=us-east-1

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay