我指的是以下 AWS 文档,尝试使用 CLI(来自 Windows)启动 EC2 实例,并在启动时指定标签:
https://docs.aws.amazon.com/cli/latest/reference/ec2/run-instances.html https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#Using_Tags_CLI
我遇到了一些问题,所以我决定尝试文档中指定的确切命令:
aws ec2 run-instances --image-id ami-abc12345 --count 1 --instance-type t2.micro --key-name MyKeyPair --subnet-id subnet-6e7f829e --tag-specifications 'ResourceType=instance,Tags=[{Key=webserver,Value=production}]' 'ResourceType=volume,Tags=[{Key=cost-center,Value=cc123}]'
这会导致以下错误:
Error parsing parameter '--tag-specifications': Expected: '=',
received: ''' for
input:
'ResourceType=instance,Tags=[{Key=webserver,Value=production}]'
^
那么,您究竟如何指定运行实例的标签?