From ece82472a62d7674b10261701bc1ec697988638f Mon Sep 17 00:00:00 2001 From: Marvin Wichmann Date: Sat, 17 Dec 2022 21:06:12 +0100 Subject: [PATCH] chore: Fix typo for vpc-cni addon example (#2349) Fix typo for vpc-cni addon All environment variables have to be strings --- examples/eks_managed_node_group/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/eks_managed_node_group/main.tf b/examples/eks_managed_node_group/main.tf index 4cac1e8..acdd39a 100644 --- a/examples/eks_managed_node_group/main.tf +++ b/examples/eks_managed_node_group/main.tf @@ -67,8 +67,8 @@ module "eks" { configuration_values = jsonencode({ env = { # Reference docs https://docs.aws.amazon.com/eks/latest/userguide/cni-increase-ip-addresses.html - ENABLE_PREFIX_DELEGATION = true - WARM_PREFIX_TARGET = 1 + ENABLE_PREFIX_DELEGATION = "true" + WARM_PREFIX_TARGET = "1" } }) }