使用 cli 将 ami 复制到不同的区域
Copy ami to different region with cli
我正在尝试通过 AWS CLI 将 ami 从一个区域复制到另一个区域。
以下命令可以很好地将 ami 复制到 相同 区域:
aws ec2 copy-image --name ami-copy-test --source-image-id ami-123... --source-region us-east-1
但我正在尝试复制到 不同的 区域,例如 us-east-2。
似乎没有 --destination-region
标志。文档页面:
https://docs.aws.amazon.com/cli/latest/reference/ec2/copy-image.html
状态:
You specify the destination Region by using its endpoint when making
the request.
但这到底是什么意思?
您在正确的页面上,请继续阅读
来自 https://docs.aws.amazon.com/cli/latest/reference/ec2/copy-image.html
...
此示例将指定的 AMI 从 us-east-1 区域 复制到 ap-northeast-1 区域。
命令:
aws ec2 copy-image --source-image-id ami-5731123e --source-region us-east-1 --region ap-northeast-1 --name "My server"
我正在尝试通过 AWS CLI 将 ami 从一个区域复制到另一个区域。
以下命令可以很好地将 ami 复制到 相同 区域:
aws ec2 copy-image --name ami-copy-test --source-image-id ami-123... --source-region us-east-1
但我正在尝试复制到 不同的 区域,例如 us-east-2。
似乎没有 --destination-region
标志。文档页面:
https://docs.aws.amazon.com/cli/latest/reference/ec2/copy-image.html
状态:
You specify the destination Region by using its endpoint when making the request.
但这到底是什么意思?
您在正确的页面上,请继续阅读
来自 https://docs.aws.amazon.com/cli/latest/reference/ec2/copy-image.html
...
此示例将指定的 AMI 从 us-east-1 区域 复制到 ap-northeast-1 区域。
命令:
aws ec2 copy-image --source-image-id ami-5731123e --source-region us-east-1 --region ap-northeast-1 --name "My server"