我正在尝试使用AWS CLI将域名从一个AWS账户转移到另一个AWS账户。当我尝试转移域时,出现以下错误:
Connect timeout on endpoint URL: "https://route53domains.eu-west-1.amazonaws.com/"
我正在使用以下命令来转移域
aws route53domains transfer-domain-to-another-aws-account --domain-name <value> --account-id <value> --profile personal
我检查了aws配置文件,看起来不错。看起来像这样:
[profile personal]
aws_access_key_id = somekey
aws_secret_access_key = somesecretkey
region = us-west-2
我还确保了用户具有正确的权限。用户具有以下权限
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "route53domains:*",
"Resource": "*"
}
]
}
,并且具有AdministratorAccess
AWS托管策略。
为确保我可以与AWS交流。我运行了一个简单的命令aws s3 ls --profile personal
,它可以正常工作。 AWS使用S3的内容进行回复。
我安装的AWS CLI版本为
aws-cli/2.0.18 Python/3.7.4 Darwin/19.4.0 botocore/2.0.0dev22
我不确定我要去哪里哪里
答案 0 :(得分:4)
您将需要指定--region us-east-1
,因为Amazon Route 53是全局服务。