boto3:竞价实例创建

时间:2016-03-01 11:22:45

标签: python amazon-web-services amazon-ec2 boto boto3

我正在尝试使用boto3创建一个现场实例。虽然我遵循API documentation,但我收到了一个我无法弄清楚的例外情况。我正在使用的代码是:

import boto3
import datetime
client = boto3.client('ec2')
response = client.request_spot_instances(
    DryRun=False,
    SpotPrice='0.10',
    ClientToken='string',
    InstanceCount=1,
    Type='one-time',
    LaunchSpecification={
        'ImageId': 'ami-fce3c696',
        'KeyName': 'awskey.pem',
        'SecurityGroups': ['sg-709f8709'],
        'InstanceType': 'm4.large',
        'Placement': {
            'AvailabilityZone': 'us-east-1a',
        },
        'BlockDeviceMappings': [
            {
                'Ebs': {
                    'SnapshotId': 'snap-f70deff0',
                    'VolumeSize': 100,
                    'DeleteOnTermination': True,
                    'VolumeType': 'gp2',
                    'Iops': 300,
                    'Encrypted': False
                },
            },
        ],

        'EbsOptimized': True,
        'Monitoring': {
            'Enabled': True
        },
        'SecurityGroupIds': [
            'sg-709f8709',
        ]
    }
)

我收到以下例外:

botocore.exceptions.ClientError: An error occurred (InvalidParameterValue) when calling the RequestSpotInstances operation: Value () for parameter groupId is invalid. The value cannot be empty

事情是API documentation中的请求中没有groupId参数。

我错过了什么吗?

2 个答案:

答案 0 :(得分:25)

尽管API文档中未指定,但显然“SecurityGroups”参数需要安全组的名称,而不是ID。

更改为群组名称解决了问题。

感谢有兴趣首先阅读这个问题的人。

答案 1 :(得分:0)

尝试使用安全组ID可以正常工作。

#!/usr/bin/python3.6
import boto3

session=boto3.session.Session(profile_name="*****")
ec2instances=session.resource('ec2',region_name="********")
new_instance = ec2instances.create_instances(
        ImageId = 'ami-04125d804acca5692',
        MinCount = 1,
        MaxCount = 1,
        InstanceType = 't2.micro',
        KeyName ='xxxxxxxxxxxxxxxxx',
        SecurityGroupIds=['sg-05dec40ce8b91a8c8'],
        SubnetId = 'subnet-01ca807d148d9e328'
)
print(new_instance)