From f8208670e2cb9c795803ec04cec83d14e30b23d2 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Thu, 20 Oct 2022 19:12:57 +0200 Subject: [PATCH] Fix variable cf_version validation --- blueprints/cloud-operations/network-dashboard/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/cloud-operations/network-dashboard/variables.tf b/blueprints/cloud-operations/network-dashboard/variables.tf index 6e42f140..94803f02 100644 --- a/blueprints/cloud-operations/network-dashboard/variables.tf +++ b/blueprints/cloud-operations/network-dashboard/variables.tf @@ -22,7 +22,7 @@ variable "cf_version" { description = "Cloud Function version 2nd Gen or 1st Gen. Possible options: 'V1' or 'V2'.Use CFv2 if your Cloud Function timeouts after 9 minutes. By default it is using CFv1." default = "V1" validation { - condition = var.cf_version == "V1" || var.cf_version == "v2" + condition = var.cf_version == "V1" || var.cf_version == "V2" error_message = "The value of cf_version must be either V1 or V2." } }