From 5eabbfb74def565720e70b6bdd564710dafc143e Mon Sep 17 00:00:00 2001 From: Jason Berlinsky Date: Fri, 11 Jan 2019 15:17:58 -0500 Subject: [PATCH] Add missing variable --- examples/simple_zonal_private/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/simple_zonal_private/variables.tf b/examples/simple_zonal_private/variables.tf index 8501b205b3..ebb151e38a 100644 --- a/examples/simple_zonal_private/variables.tf +++ b/examples/simple_zonal_private/variables.tf @@ -31,6 +31,11 @@ variable "region" { description = "The region to host the cluster in" } +variable "zones" { + type = "list" + description = "The zone to host the cluster in (required if is a zonal cluster)" +} + variable "network" { description = "The VPC network to host the cluster in" }