1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

chore: Fix typo for vpc-cni addon example (#2349)

Fix typo for vpc-cni addon

All environment variables have to be strings
This commit is contained in:
Marvin Wichmann
2022-12-17 21:06:12 +01:00
committed by GitHub
parent f0abb25ba2
commit ece82472a6
+2 -2
View File
@@ -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"
}
})
}