There was an error while loading. Please reload this page.
1 parent 3ffe262 commit fd00ee1Copy full SHA for fd00ee1
main.tf
@@ -1,9 +1,12 @@
1
locals {
2
# Atlantis
3
- atlantis_url = "https://${try(coalesce(
4
- try(var.atlantis.fqdn, module.alb.route53_records["A"].fqdn, null),
5
- module.alb.dns_name,
6
- ), "")}"
+ atlantis_url = "https://${try(
+ coalesce(
+ var.atlantis.fqdn,
+ try(module.alb.route53_records["A"].fqdn, null),
7
+ module.alb.dns_name,
8
+ ),
9
+ "")}"
10
}
11
12
################################################################################
0 commit comments