Skip to content

Commit 50141fd

Browse files
Merge pull request #27 from sourcefuse/chore/join-health-check-fqdn-list
join the list of health check fqdns into a single string
2 parents 1aa7e82 + 64bfddd commit 50141fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1
1+
1.3.2

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ locals {
2525
},
2626
{
2727
name = "/${var.namespace}/${var.environment}/alb/${module.alb.alb_name}/health_check_fqdn"
28-
value = module.health_check.route_53_fqdn
28+
value = join(", ",module.health_check.route_53_fqdn)
2929
description = "ALB Health Check FQDN."
3030
type = "String"
3131
},

0 commit comments

Comments
 (0)