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 ab41588 commit 86a676eCopy full SHA for 86a676e
wrappers/main.tf
@@ -26,6 +26,7 @@ module "wrapper" {
26
hosted_zone_name = try(each.value.hosted_zone_name, var.defaults.hosted_zone_name, null)
27
mutual_tls_authentication = try(each.value.mutual_tls_authentication, var.defaults.mutual_tls_authentication, {})
28
name = try(each.value.name, var.defaults.name, "")
29
+ private_zone = try(each.value.private_zone, var.defaults.private_zone, false)
30
protocol_type = try(each.value.protocol_type, var.defaults.protocol_type, "HTTP")
31
route_key = try(each.value.route_key, var.defaults.route_key, null)
32
route_selection_expression = try(each.value.route_selection_expression, var.defaults.route_selection_expression, null)
0 commit comments