We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50141fd commit a21adaaCopy full SHA for a21adaa
locals.tf
@@ -25,7 +25,7 @@ locals {
25
},
26
{
27
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/health_check_fqdn"
28
- value = join(", ",module.health_check.route_53_fqdn)
+ value = length(module.health_check.route_53_fqdn) > 0 ? join(", ", module.health_check.route_53_fqdn) : "No health check FQDN"
29
description = "ALB Health Check FQDN."
30
type = "String"
31
0 commit comments