Skip to content

Commit

Permalink
feat: Host level routing assigns an incorrect group name to an ingres…
Browse files Browse the repository at this point in the history
…s, causing ALB not to be provisioned (#1054)
  • Loading branch information
alexlokshin-czi authored Feb 1, 2023
1 parent 71532fc commit 16432eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/modules/happy-stack-eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ locals {
service_definitions = { for k, v in local.service_defs : k => merge(v, {
external_host_match = var.routing_method == "CONTEXT" ? v.external_stack_host_match : v.external_service_host_match
host_match = var.routing_method == "CONTEXT" ? v.stack_host_match : v.service_host_match
group_name = var.routing_method == "CONTEXT" ? "stack-${var.stack_name}" : "service-${k}"
group_name = var.routing_method == "CONTEXT" ? "stack-${var.stack_name}" : "service-${var.stack_name}-${k}"
service_name = "${var.stack_name}-${k}"
}) }

Expand Down

0 comments on commit 16432eb

Please sign in to comment.