Configuration for an Auto Scaling Group which creates a logical grouping of EC2 instances, and enables you to use features such as health check replacements and scaling policies. Auto scaling groups also maintain the number of EC2 instances within the defined limits.

The following settings are included in this template: 
  • Auto Scaling Group Name
  • Minimum Size, Maxium Size, and Desired Capacity to set the number of EC2 instances
  • Health Check Type and Health Check Grace Period
  • Launch Template: Provide the launch template and version to be used for provisioning EC2 instances
  • VPC Zone Identifier: Specify the subnets to be used for provisioning the EC2 instances
  • Target Group Arn(s) to attach the Auto Scaling Group to a Load Balancer
Items
1
Size
0.3 KB
Missing Parameters
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
  AutoScalingGroup:
    Type: 'AWS::AutoScaling::AutoScalingGroup'
    Properties:
      MinSize: '1'
      MaxSize: '1'
      DesiredCapacity: '1'
      HealthCheckType: EC2
      LaunchTemplate:
        LaunchTemplateId: ''
        Version: ''
Parameters: {}
Metadata: {}
Conditions: {}

Actions



Customize Template

* Required field