Boto3を使用してスポットインスタンスを作成しようとしています。 APIドキュメント に従いますが、理解できない例外が発生します。私が使用しているコードは次のとおりです。
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ドキュメント のリクエストにgroupIdパラメータがないことです。
私は何かが足りないのですか?
APIドキュメントでは指定されていませんが、明らかに「SecurityGroups」パラメータにはIDではなくセキュリティグループの名前が必要です。
グループ名に変更すると、問題は解決しました。
そもそも質問を読んでくれた人に感謝します。
正常に機能しているセキュリティグループ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)