From d1f723f335b5c9985b1a04496b172d3f9deb2bc8 Mon Sep 17 00:00:00 2001 From: Vedant Pareek Date: Mon, 1 Jul 2024 20:29:37 +0530 Subject: [PATCH] fixed node count bug --- locals.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/locals.tf b/locals.tf index 7df90be..cf1782a 100644 --- a/locals.tf +++ b/locals.tf @@ -12,6 +12,7 @@ locals { name = "${v["name"]}sp" node_count = 0 max_count = v["max_count"] + node_count = null min_count = 0 os_disk_size_gb = 100 priority = "Spot" @@ -34,6 +35,7 @@ locals { name = "${v["name"]}" node_count = 0 max_count = v["max_count"] + node_count = null min_count = 0 os_disk_size_gb = 100 priority = "Regular" @@ -54,6 +56,7 @@ locals { name = "${v["name"]}sp" node_count = 0 max_count = v["max_count"] + node_count = null min_count = 0 os_disk_size_gb = 100 priority = "Spot" @@ -77,6 +80,7 @@ locals { name = "${v["name"]}" node_count = 0 max_count = v["max_count"] + node_count = null min_count = 0 os_disk_size_gb = 100 priority = "Regular" @@ -98,6 +102,7 @@ locals { name = "tfycp" node_count = 0 max_count = 4 + node_count = null min_count = 0 os_disk_size_gb = 100 priority = "Spot"