From 5df92165f6d4d3ded1b403b4b7c4aa7e4c318eb0 Mon Sep 17 00:00:00 2001 From: env0 Date: Thu, 13 Nov 2025 15:58:53 +0000 Subject: [PATCH] Fix code issue: `vpc_id` variable has no type --- k8s-module/main.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/k8s-module/main.tf b/k8s-module/main.tf index 29234fe..5e7a423 100644 --- a/k8s-module/main.tf +++ b/k8s-module/main.tf @@ -68,5 +68,7 @@ terraform { } variable "env0_values" {} -variable "vpc_id" {} +variable "vpc_id" { + type = string +} variable "efs_id" {}