Boto run_instances() - 意外的关键字参数 'tag_specifications'
Boto run_instances() - unexpected keyword argument 'tag_specifications'
我正在尝试通过 python3 脚本启动一个 aws 实例。它工作正常,但我现在正在尝试向实例添加一些标签,但没有成功。我正在尝试以下操作,但出现“意外的关键字参数 'tag_specifications'”错误。
import boto.ec2
conn=boto.ec2.connect_to_region("eu-west-1")
conn.run_instances('ami-12345',instance_type='c5.large',key_name='test.prod',
security_groups=['ProductionInstance'],instance_profile_name='TestProductionProcessor',
tag_specifications=[{'Key': 'Name','Value': 'TEST'}])
我已经检查了最新的 botocore 等等
谢谢
你可以试试
TagSpecifications=[
{
'ResourceType': 'instance',
'Tags': [
{
'Key': 'Name',
'Value': 'Test'
},
]
}
以下代码在 Python 3.7;
上成功执行
import boto3.ec2
conn=boto3.client('ec2',region_name='eu-west-1')
tags=[
{'Key':'Name','Value': 'Test'},
]
tag_specification=[{'ResourceType': 'instance','Tags': tags},]
conn.run_instances(ImageId='ami-12345',
TagSpecifications=tag_specification,
InstanceType='c5.large',
SecurityGroupIds=['sg-12345'], #change value of SecurityGroupIds as per your setup
IamInstanceProfile={
'Name': 'TestProductionProcessor'
},
MaxCount=1,
MinCount=1,
SubnetId='subnet-12345' #change value of SubnetId as per your setup
)
我正在尝试通过 python3 脚本启动一个 aws 实例。它工作正常,但我现在正在尝试向实例添加一些标签,但没有成功。我正在尝试以下操作,但出现“意外的关键字参数 'tag_specifications'”错误。
import boto.ec2
conn=boto.ec2.connect_to_region("eu-west-1")
conn.run_instances('ami-12345',instance_type='c5.large',key_name='test.prod',
security_groups=['ProductionInstance'],instance_profile_name='TestProductionProcessor',
tag_specifications=[{'Key': 'Name','Value': 'TEST'}])
我已经检查了最新的 botocore 等等
谢谢
你可以试试
TagSpecifications=[
{
'ResourceType': 'instance',
'Tags': [
{
'Key': 'Name',
'Value': 'Test'
},
]
}
以下代码在 Python 3.7;
上成功执行import boto3.ec2
conn=boto3.client('ec2',region_name='eu-west-1')
tags=[
{'Key':'Name','Value': 'Test'},
]
tag_specification=[{'ResourceType': 'instance','Tags': tags},]
conn.run_instances(ImageId='ami-12345',
TagSpecifications=tag_specification,
InstanceType='c5.large',
SecurityGroupIds=['sg-12345'], #change value of SecurityGroupIds as per your setup
IamInstanceProfile={
'Name': 'TestProductionProcessor'
},
MaxCount=1,
MinCount=1,
SubnetId='subnet-12345' #change value of SubnetId as per your setup
)