From 692e9cb0e0a5f6c54813e6630f62f8ef338c8d1c Mon Sep 17 00:00:00 2001 From: Mihai PLESA Date: Sat, 14 Nov 2020 21:14:50 +0000 Subject: [PATCH] added passing of ipv6_enabled for aaaa record creation (#44) --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index a0fe687..9968bc7 100644 --- a/main.tf +++ b/main.tf @@ -158,6 +158,7 @@ module "dns" { parent_zone_name = var.parent_zone_name target_dns_name = try(aws_cloudfront_distribution.default[0].domain_name, "") target_zone_id = try(aws_cloudfront_distribution.default[0].hosted_zone_id, "") + ipv6_enabled = var.is_ipv6_enabled context = module.this.context }