I'm using boto to spawn a new EC2 instance based on an AMI.
The ami.run method has a number of parameters, but none for "name" - maybe it's called something different?
import boto c = boto.connect_ec2(ec2_key, ec2_secret) image = c.get_image(ec2_ami) reservation = image.run(key_name=ec2_keypair, security_groups=ec2_secgroups, instance_type=ec2_instancetype) instance = reservation.instances[0] c.create_tags([instance.id], {"Name": instance_name})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With