mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-02 05:14:32 +02: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:
@@ -41,7 +41,7 @@ module "user_data" {
|
||||
################################################################################
|
||||
|
||||
data "aws_ec2_instance_type" "this" {
|
||||
count = var.enable_efa_support && local.instance_type_provided ? 1 : 0
|
||||
count = var.create && var.enable_efa_support && local.instance_type_provided ? 1 : 0
|
||||
|
||||
instance_type = var.instance_type
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user