Getty Images/iStockphoto

Steps to launch an EC2 instance using AWS CloudFormation

Admins can use AWS CloudFormation templates and resource stacks to deploy an EC2 instance using an infrastructure-as-code approach.

AWS CloudFormation can simplify the launch and maintenance of application infrastructure -- including EC2 instances -- within the AWS cloud.

First, though, it's essential to know some key features of CloudFormation, including templates and stacks. Follow this step-by-step tutorial to get started with the tool and launch an EC2 instance.

AWS CloudFormation basics

AWS CloudFormation is an infrastructure-as-code tool that defines resources and their configurations in a standardized template -- either a JavaScript Object Notation (JSON) or YAML format. In general, YAML is the preferable option, as it's more concise; JSON requires a much higher number of characters. YAML also supports the ability to add comments, which JSON does not.

Admins can version and maintain CloudFormation templates as part of a suite of operational components.

A key concept in CloudFormation is a stack. A stack is an AWS resource that is created in addition to the resources configured in the template. A CloudFormation stack groups, launches and manages all the resources defined in a template. Even though a stack could technically contain as little as a single resource, its optimal use case is one where multiple resources launch together.

The most common use case for CloudFormation is to group all or most components of a full application environment within a single stack. This simplifies the launch of multiple environments across deployment stages.

While CloudFormation has a variety of features and capabilities, there are two that are particularly important.

  • Parameters. Admins can configure resources using dynamic values that they specify upon stack creation or updates. This provides flexibility when using the same template to launch multiple stacks across different deployment stages.
  • Internal references. Once resources are created, they can be referenced internally within the CloudFormation stack. For example, users can create a security group in a template and configure an EC2 instance in the same template to use the recently created security group via internal reference.

Use CloudFormation to deploy an EC2 instance

There are required parameters to define before you can launch the CloudFormation stack that will deploy the EC2 instance. These parameters include the following:

  • the Amazon Machine Image (AMI) ID the new EC2 instance will use;
  • the EC2 instance type;
  • the VPC ID and subnet ID where the instance will be launched;
  • at least one security group ID; and
  • an EC2 key pair name.

For this example, we will assume a key pair was already created and a security group ID is already known, prior to creating the EC2 instance.

Step 1. When defining a CloudFormation template, it is mandatory to specify a Resources block and declare all the relevant AWS resources under it. The most basic block to launch an EC2 instance in CloudFormation would look like this:

Resources:
  
  MyNewEC2Instance:
  
    Type: AWS::EC2::Instance
  
    Properties: 
  
      ImageId: <ami-id>
  
      InstanceType: <ec2-instance-type>
  
      SubnetId: <subnet-id>
  
      SecurityGroupIds: 
  
        - <security-group-id>
  
      KeyName: <ec2-key-name>
  

In addition to the essential configurations shown above, there are more than 40 parameters that one can configure when launching an EC2 instance. The following are important parameters that are highly recommended to include:

  • BlockDeviceMappings. Enables users to allocate more storage space than specified in the AMI. For example, most AWS Linux AMIs come with a default of 8 GB, which might not be enough for many applications.
  • DisableApiTermination. Prevents users from accidentally terminating an EC2 instance.
  • IamInstanceProfile. Associates an identity and access management profile to the EC2 instance, eliminating the need to configure AWS credentials in local files or environment variables inside the instance. This provides a secure way to grant AWS permissions to processes running inside an EC2 instance.
  • NetworkInterfaces. Defines the allocation of a public IP address to the new instance, depending on whether the instance should be accessible from the internet or only within a VPC.

Step 2. Once you complete the template, create the CloudFormation stack. This can be done by clicking on the Create stack button from the CloudFormation console, as seen in Figure 1.

How to create a CloudFormation stack
Figure 1. Create the CloudFormation stack

You can also launch a CloudFormation stack using the AWS Command Line Interface or SDK. These options fully automate resource creation and minimize manual intervention.

Step 3. Select the option Template is ready and Upload a template file, as shown in Figure 2.

Select the 'Ready the template' and 'Upload a template file' options in CloudFormation
Figure 2. Select the right options

Step 3. Define the stack name and, if there is a parameters section in the template, specify those parameters, as shown in Figure 3.

Define the CloudFormation stack name and add parameters
Figure 3. Define the stack name and specify parameters

Next, select advanced options for the deployment. These options include resource tags, IAM roles, stack failure options -- rollback or preserve resources -- and termination protection. Next, there is a confirmation page that includes a button to create the stack, as shown in Figure 4.

Confirm and create the CloudFormation stack
Figure 4. Confirm and create stack

Once you create the stack, it will appear as CREATE_COMPLETE in the CloudFormation console. There are several tabs in the console that provide more information about the stack, as pictured in Figure 5.

Next Steps

Best practices for right-sizing EC2 instances

 AWS CloudFormation vs Terraform: How to choose?

How to Create an AWS Lambda Function with CloudFormation

Dig Deeper on Cloud infrastructure design and management

Data Center
ITOperations
SearchAWS
SearchVMware
Close