From 998c3f08e6711c7378f99cb773aabeca42807aa4 Mon Sep 17 00:00:00 2001 From: Sokratis Siozos-Drosos Date: Wed, 24 Apr 2019 17:26:36 +0200 Subject: [PATCH] (MODE-11365) Fixed dependency between ASG and listener. --- deployment/modules/tileserver/alb_listeners.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/modules/tileserver/alb_listeners.tf b/deployment/modules/tileserver/alb_listeners.tf index a74255f..a1a5610 100644 --- a/deployment/modules/tileserver/alb_listeners.tf +++ b/deployment/modules/tileserver/alb_listeners.tf @@ -1,5 +1,5 @@ resource "aws_alb_listener" "this_alb_listener" { - depends_on = ["aws_autoscaling_group.autoscalinggroup-this"] + depends_on = ["aws_autoscaling_group.autoscalinggroup"] load_balancer_arn = "${data.terraform_remote_state.mono_alb.this_alb_arn}" port = 80 protocol = "HTTP"