File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
operations/deployment/terraform/modules/aws/ecs Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,20 @@ resource "aws_alb" "ecs_lb" {
4747
4848data "aws_alb" "selected_lb" {
4949 name = var. aws_resource_identifier_supershort
50- depends_on = [ aws_alb . ecs_lb ]
50+ depends_on = [
51+ aws_alb . ecs_lb ,
52+ aws_alb_target_group . lb_targets ,
53+ aws_alb_listener . lb_listener_ssl ,
54+ aws_alb_listener . lb_listener ,
55+ aws_alb_listener . http_redirect ,
56+ aws_alb_listener . https_redirect ,
57+ aws_alb_listener_rule . redirect_based_on_path ,
58+ aws_alb_listener_rule . redirect_based_on_path_for_http ,
59+ aws_security_group . ecs_lb_sg ,
60+ aws_security_group_rule . incoming_ecs_lb_ports ,
61+ aws_security_group_rule . incoming_alb_http ,
62+ aws_security_group_rule . incoming_alb_https
63+ ]
5164}
5265
5366resource "aws_alb_target_group" "lb_targets" {
You can’t perform that action at this time.
0 commit comments