Jeff
Jeff

Reputation: 2808

With boto, how can I name a newly spawned EC2 instance?

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?

Upvotes: 23

Views: 9909

Answers (3)

Haha
Haha

Reputation: 1009

For those who are looking for the boto3 version of @Roberto 's answer:

ec2 = boto3.resource('ec2')
ec2.create_tags(Resources=[instance.id], Tags=[
        {
            'Key': 'Name',
            'Value': instance_name,
        },
    ])

Upvotes: 1

Roberto
Roberto

Reputation: 1175

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})

Upvotes: 33

bwight
bwight

Reputation: 3310

In EC2 there's no api to change the actually name of the machine. You basically have two options.

  1. You can pass the desired name of the computer in the user-data and when the server starts run a script that will change the name of the computer.
  2. You can use an EC2 tag to name the server ec2-create-tags <instance-id> --tag:Name=<computer name>. Downside to this solution is the server wont actually update to this name. This tag is strictly for you or for when you're querying the list of servers in aws.

Generally speaking if you're at the point where you want your server to configure itself when starting up I've found that renaming your computer in EC2 just causes more trouble than it's worth. I suggest not using them if you don't have to. Using the tags or elb instances is the better way to go.

Upvotes: 1

Related Questions