Skip to content

Commit 1d0dfb0

Browse files
authored
fix: IPv6 lookup values (#175)
* fix: IPv6 lookup values * tf value
1 parent 3d25417 commit 1d0dfb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/essentials/nodelocaldns.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ locals {
77
local_dns_ip = var.nodelocaldns_localdns_ip
88
custom_upstream_svc_name = var.nodelocaldns_custom_upstream_svc_name
99
enable_logging = var.nodelocaldns_enable_logging
10-
no_ipv6_lookups = var.ip_dual_stack_enabled ? var.nodelocaldns_no_ipv6_lookups : false
10+
no_ipv6_lookups = var.nodelocaldns_no_ipv6_lookups
1111
prefetch_enabled = var.nodelocaldns_cache_prefetch_enabled
1212
setup_interface = var.nodelocaldns_setup_interface
1313
setup_iptables = var.nodelocaldns_setup_iptables

modules/essentials/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1661,7 +1661,7 @@ variable "nodelocaldns_enable_logging" {
16611661
variable "nodelocaldns_no_ipv6_lookups" {
16621662
description = "Disable IPv6 lookups, If true, return NOERROR when attempting to resolve an IPv6 address"
16631663
type = bool
1664-
default = true
1664+
default = false
16651665
}
16661666

16671667
variable "nodelocaldns_cache_prefetch_enabled" {

0 commit comments

Comments
 (0)