Improve this page

Back to AWS Terraform templates index <–

AWS Autoscaling group with Terraform

Aws_Autoscaling_group by the Sogeti community.

Template Locations

Online documentation

Template reference
Service description

module "AWS_Autoscaling_group" {
    autosaclinggroup_instance_name = "Test_asg_instance_1"
    image_id = "ami-038b3df3312ddf25d"
    instance_type = "t2.micro"
    asg_min = "2"
    asg_max = "3"
    asg_desire = "2"
    healthcheck_type = "EC2"
    healthcheck_period = "300"
    vpc_zone_identifier = ["subnet-0c6f6f567dd82a5ad", "subnet-04b51b54646d66f12"]
    launch_configuration_name = "cloudboost_launchconfiguration"
    auto_scalling_group_name = "cloudboost_autoscalinggroup"
}