3

我正在使用以下命令来设置 AWS 启动配置:

as-create-launch-config test1autoscale --image-id ami-xxxx --instance-type m1.small

其中 ami-xxxx 是我通过 Web 控制台从我的实例中获得的图像 ID。我收到以下错误:

Malformed input-AMI ami-xxxx is invalid: The AMI ID 'ami-xxxx' does not exist

我已经三次检查图像 ID 是否与实例图像 ID 匹配。我的可用区是 ap-southeast-1a。如果它不接受我希望添加到自动缩放组的实例的图像,我不清楚要求什么图像

4

1 回答 1

11

尝试将区域端点(因为默认情况下它正在查看 us-east-1 端点)添加到您的配置命令,然后它应该可以工作:

as-create-launch-config test1autoscale --region ap-southeast-1 --image-id ami-xxxx --instance-type m1.small

另请参阅:区域和端点 - Amazon Web Services Glossary

于 2012-06-14T07:30:00.883 回答