mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-17 23:13:46 +01:00
fix: Ensure a default ip_family value is provided to guarantee a CNI policy is attached to nodes (#2967)
This commit is contained in:
@@ -83,7 +83,7 @@ variable "cluster_endpoint_public_access_cidrs" {
|
||||
variable "cluster_ip_family" {
|
||||
description = "The IP family used to assign Kubernetes pod and service addresses. Valid values are `ipv4` (default) and `ipv6`. You can only specify an IP family when you create a cluster, changing this value will force a new cluster to be created"
|
||||
type = string
|
||||
default = null
|
||||
default = "ipv4"
|
||||
}
|
||||
|
||||
variable "cluster_service_ipv4_cidr" {
|
||||
|
||||
Reference in New Issue
Block a user