Skip to content

Instantly share code, notes, and snippets.

@pb8226
Created April 30, 2018 21:36
Show Gist options
  • Save pb8226/b7e074bd2f3910843eb59ce9d3281444 to your computer and use it in GitHub Desktop.
Save pb8226/b7e074bd2f3910843eb59ce9d3281444 to your computer and use it in GitHub Desktop.
resource "aws_autoscaling_group" "<%= dasherizedBaseName %>" {
launch_configuration = "${aws_launch_configuration.<%= dasherizedBaseName %>.id}"
availability_zones = ["${data.aws_availability_zones.all.names}"]
min_size = "${var.min_size}"
max_size = "${var.max_size}"
load_balancers = ["${aws_elb.<%= dasherizedBaseName %>.name}"]
health_check_type = "ELB"
tag {
key = "Name"
value = "terraform-asg-<%= dasherizedBaseName %>"
propagate_at_launch = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment