You must be logged in to view saved presets
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.
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: {}