mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Udpate Terraform configuration
Update the Terraform configuration to properly register the ASG instances with the ELB Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
This commit is contained in:
parent
d1c1f6c306
commit
2aec01ac64
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ resource "aws_autoscaling_group" "asg" {
|
|||
max_size = "2"
|
||||
desired_capacity = "2"
|
||||
launch_configuration = "${aws_launch_configuration.lc.name}"
|
||||
load_balancers = ["elb-test"]
|
||||
load_balancers = ["${aws_elb.elb.name}"]
|
||||
|
||||
lifecycle {
|
||||
create_before_destroy = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue