Instance Metadata

Amazon EC2 instances can access instance-specific metadata as well as data supplied when launching the instances. This data can be used to build more generic AMIs that can be modified by configuration files supplied at launch time.

Example

If you run web servers for various small businesses, they can all use the same AMI and retrieve their content from the Amazon S3 bucket you specify at launch.

To add a new customer at any time, simply create a bucket for the customer, add their content, and launch your AMI.


The data available to instances is categorized into metadata and user-supplied data.

Metadata is specific to an instance. Currently, we provide:

DataDescriptionVersion Introduced
ami-idThe AMI ID used to launch the instance.1.0
ami-manifest-pathThe manifest path of the AMI with which the instance was launched.1.0
ami-launch-indexThe index of this instance in the reservation (per AMI).1.0
ancestor-ami-idsThe AMI IDs of any instances that were rebundled to create this AMI.2007-10-10
instance-idThe ID of this instance.1.0
instance-typeThe type of instance to launch. For more information, see Selecting Instance Types.2007-08-29
local-hostnameThe local hostname of the instance.2007-01-19
public-hostnameThe public hostname of the instance.2007-01-19
local-ipv4Public IP address if launched with direct addressing; private IP address if launched with public addressing.1.0
public-ipv4NATted public IP Address2007-01-19
public-keys/Public keys. Only available if supplied at instance launch time1.0
reservation-idID of the reservation.1.0
security-groupsNames of the security groups the instance is launched in. Only available if supplied at instance launch time1.0
product-codesProduct codes associated with this instance. 2007-03-01

User-supplied data is treated as opaque data: what you give us is what you get back.

[Note]Note
  • All instances launched together get the same user-supplied data. You can use the AMI launch index as an index into the data.

  • User data is limited to 16K. This limit applies to the data in raw form, not base64 encoded form.

  • The user data must be base64 encoded before being submitted to the API. The API command-line tools perform the base64 encoding for you. The data is base64 decoded before presented to the instance.

An instance retrieves the data by querying a web server using a Query API. The base URI of all requests is http://169.254.169.254/2007-08-29/ where 2007-08-29 indicates the API version.

[Note]Note

Amazon EC2 Version 1.0 is part of a legacy versioning scheme. Newer versions follow a date based versioning scheme. For more information on the versioning scheme used by Amazon EC2, see API Versioning.

The latest version of the API is always available using the URI http://169.254.169.254/latest.

Requests for a specific metadata resource returns the appropriate value or a 404 HTTP error code if the resource is not available. All metadata is returned as text (content type text/plain).

Requests for a general metadata resource (i.e. an URI ending with a /) return a list of available resources or a 404 HTTP error code if there is no such resource. The list items are on separate lines terminated by line feeds (ASCII 10).

Example

The following examples list HTTP GET requests and responses. You can use a tool such as curl or wget to make these types of requests.

This example gets the available API versions:

GET http://169.254.169.254/
1.0
2007-01-19
2007-03-01
2007-08-29

This example gets the top-level metadata items:

GET http://169.254.169.254/2007-08-29/meta-data/
ami-id
ami-launch-index
ami-manifest-path
hostname
instance-id
instance-type
local-hostname
local-ipv4
public-hostname
public-ipv4
public-keys/
reservation-id
security-groups

This examples get the value of each metadata item in the above example:

GET http://169.254.169.254/2007-08-29/meta-data/ami-manifest-path
my-amis/spamd-image.manifest.xml
GET http://169.254.169.254/2007-08-29/meta-data/ami-manifest-path
my-amis/spamd-image.manifest.xml
GET http://169.254.169.254/2007-08-29/meta-data/ami-id
ami-2bb65342
GET http://169.254.169.254/2007-08-29/meta-data/reservation-id
r-fea54097
GET http://169.254.169.254/2007-08-29/meta-data/hostname
domU-12-34-31-00-00-05.usma1.compute.amazonaws.com

This example gets the list of available public keys:

GET http://169.254.169.254/2007-08-29/meta-data/public-keys/
0=my-public-key

This example shows the formats in which public key 0 is available:

GET http://169.254.169.254/2007-08-29/meta-data/public-keys/0/
openssh-key

This example gets public key 0 (in openssh-key format):

GET http://169.254.169.254/2007-08-29/meta-data/public-keys/0/openssh-key
ssh-rsa AAAA.....wZEf my-public-key

This example gets the product code:

GET http://169.254.169.254/2007-08-29/meta-data/product-codes
774F4FF8

In this example, Alice wants to launch four instances of her favorite database AMI with the first acting as master and the remainder acting as replicas.

The master database configuration specifies various database parameters (e.g., the size of store) while the replicas' configuration specifies different parameters, such as the replication strategy. Alice decides to provide this data as an ASCII string with a pipe symbol (| delimiting the data for the various instances:

store-size=123PB backup-every=5min | replicate-every=1min | replicate-every=2min | replicate-every=10min | replicate-every=20min

where store-size=123PB backup-every=5min defines the master database configuration, replicate-every=1min defines the first replicant's configuration, replicate-every=2min defines the second replicant's configuration, and so on.

Alice launches four instances:

$ ec2-run-instances ami-2bb65342 -n 4 -d "store-size=123PB backup-every=5min | replicate-every=1min | replicate-every=2min | replicate-every=10min | replicate-every=20min"
      
RESERVATION     r-fea54097      598916040194    default
INSTANCE i-3ea74257 ami-2bb65342 pending 0 m1.small 2007-08-07T11:29:58+0000
INSTANCE i-31a74258 ami-2bb65342 pending 1 m1.small 2007-08-07T11:29:58+0000
INSTANCE i-31a74259 ami-2bb65342 pending 2 m1.small 2007-08-07T11:29:58+0000
INSTANCE i-31a7425a ami-2bb65342 pending 3 m1.small 2007-08-07T11:29:58+0000

Once launched, all instances have a copy of the user data and the common metadata shown here:

However each instance has certain unique metadata:

Instance 1

MetadataValue
instance-idi-3ea74257
ami-launch-index0
hostnamedomU-12-43-33-00-01-27.usma1.compute.amazonaws.com
local-ipv4216.182.228.87

Instance 2

MetadataValue
instance-idi-31a74258
ami-launch-index1
hostnamedomU-12-31-33-00-01-72.usma1.compute.amazonaws.com
local-ipv4216.182.228.88

Instance 3

MetadataValue
instance-idi-31a74259
ami-launch-index2
hostnamedomU-12-31-33-00-01-73.usma1.compute.amazonaws.com
local-ipv4216.182.228.89

Instance 4

MetadataValue
instance-idi-31a7425a
ami-launch-index3
hostnamedomU-12-31-33-00-01-74.usma1.compute.amazonaws.com
local-ipv4216.182.228.90

Therefore, an instance can determine its portion of the user-supplied data by doing the following: