Hello,
Terraform deployment completed successfully but the Retail UI didn't work.
Checking the ALB I found that there wasn't a Listener configured.
After manually configured the Listener (port 80) adding the existing Target Group (ui-application) the URL worked.
I asked Kiro what was the problem and this is the answer (that act
The issue is that in the terraform-aws-modules/alb version 8.0, when using target_groups as a list, you should use name_prefix instead of name to avoid naming conflicts. The name parameter with a fixed value can cause issues with the module's internal resource creation. Try running terraform apply now.
Cheers.
Hello,
Terraform deployment completed successfully but the Retail UI didn't work.
Checking the ALB I found that there wasn't a Listener configured.
After manually configured the Listener (port 80) adding the existing Target Group (ui-application) the URL worked.
I asked Kiro what was the problem and this is the answer (that act
The issue is that in the terraform-aws-modules/alb version 8.0, when using target_groups as a list, you should use name_prefix instead of name to avoid naming conflicts. The name parameter with a fixed value can cause issues with the module's internal resource creation. Try running terraform apply now.Cheers.