From 1105d8f9e0dde119bfd6d788922ddb83806c69e7 Mon Sep 17 00:00:00 2001 From: Morgante Pell <morgantep@google.com> Date: Mon, 2 Mar 2020 15:35:15 -0800 Subject: [PATCH] chore: Fix shared_vpc_subnets default on gke_shared_vpc example (#385) --- examples/gke_shared_vpc/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gke_shared_vpc/variables.tf b/examples/gke_shared_vpc/variables.tf index 8fffac2c..28052419 100644 --- a/examples/gke_shared_vpc/variables.tf +++ b/examples/gke_shared_vpc/variables.tf @@ -33,6 +33,6 @@ variable "shared_vpc" { variable "shared_vpc_subnets" { description = "List of subnets fully qualified subnet IDs (ie. projects/$PROJECT_ID/regions/$REGION/subnetworks/$SUBNET_ID)" type = list(string) - default = [""] + default = [] }