Reference AMIs using Systems Manager parameters
When you launch an instance using the EC2 launch instance wizard in the Amazon EC2 console, you can either select an AMI from the list, or you can select an AWS Systems Manager parameter that points to an AMI ID (described in this section). If you use automation code to launch your instances, you can specify the Systems Manager parameter instead of the AMI ID.
A Systems Manager parameter is a customer-defined key-value pair that you can create in Systems Manager Parameter Store. The Parameter Store provides a central store to externalize your application configuration values. For more information, see AWS Systems Manager Parameter Store in the AWS Systems Manager User Guide.
When you create a parameter that points to an AMI ID, make sure that you specify the
data type as aws:ec2:image
. Specifying this data type ensures that when the
parameter is created or modified, the parameter value is validated as an AMI ID. For
more information, see Native
parameter support for Amazon Machine Image IDs in the AWS Systems Manager User Guide.
Use cases
When you use Systems Manager parameters to point to AMI IDs, it is easier for your users to select the correct AMI when launching instances. Systems Manager parameters can also simplify the maintenance of automation code.
Easier for users
If you require instances to be launched using a specific AMI, and the AMI is regularly updated, we recommend that you require your users to select a Systems Manager parameter to find the AMI. Requiring your users to select a Systems Manager parameter ensures that the latest AMI is used to launch instances.
For example, every month in your organization you might create a new version of
your AMI that has the latest operating system and application patches. You also
require your users to launch instances using the latest version of your AMI. To
ensure that your users use the latest version, you can create a Systems Manager parameter (for
example, golden-ami
) that points to the correct AMI ID. Each time a new
version of the AMI is created, you update the AMI ID value in the parameter so that
it always points to the latest AMI. Your users don't have to know about the periodic
updates to the AMI because they continue to select the same Systems Manager parameter each
time. Using a Systems Manager parameter for your AMI makes it easier for them to select the
correct AMI for an instance launch.
Simplify automation code maintenance
If you use automation code to launch your instances, you can specify the Systems Manager parameter instead of the AMI ID. If a new version of the AMI is created, you can change the AMI ID value in the parameter so that it points to the latest AMI. The automation code that references the parameter doesn’t have to be modified each time a new version of the AMI is created. This simplifies the maintenance of the automation and helps to drive down deployment costs.
Note
Running instances are not affected when you change the AMI ID pointed to by the Systems Manager parameter.
Permissions
If you use Systems Manager parameters that point to AMI IDs in the launch instance wizard, you must add the following permissions to your IAM policy:
-
ssm:DescribeParameters
– Grants permission to view and select Systems Manager parameters. -
ssm:GetParameters
– Grants permission to retrieve the values of the Systems Manager parameters.
You can also restrict access to specific Systems Manager parameters. For more information and example IAM policies, see Example: Use the EC2 launch instance wizard.
Limitations
AMIs and Systems Manager parameters are Region specific. To use the same Systems Manager parameter
name across Regions, create a Systems Manager parameter in each Region with the same name (for
example, golden-ami
). In each Region, point the Systems Manager parameter to an
AMI in that Region.
Parameter names are case-sensitive. Backslashes for the parameter name are only
necessary when the parameter is part of a hierarchy, for example,
/amis/production/golden-ami
. You can omit the backslash if the
parameter is not part of a hierarchy.
Launch an instance using a Systems Manager parameter
When you launch an instance, instead of specifying an AMI ID, you can specify a Systems Manager parameter that points to an AMI ID.
To specify the parameter programmatically, use the following syntax, where
resolve:ssm
is the standard prefix and parameter-name
is the unique parameter name.
resolve:ssm:
parameter-name
Systems Manager parameters have version support. Each iteration of a parameter is
assigned a unique version number. You can reference the version of the parameter
as follows, where version
is the unique version number. By default,
the latest version of the parameter is used when no version is specified.
resolve:ssm:
parameter-name
:version
To launch an instance using a public parameter provided by AWS, see Reference the latest AMIs using Systems Manager public parameters.