From 591ab3d1b37a43f1a201bb0806b8439958be4744 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 12 Feb 2026 14:06:39 -0500 Subject: [PATCH] fix: provide default for `var.location` to improve backwards compatibility of ADC change. Currently, the logic was to use `var.function_location` if `var.location` was unset. But because `var.location` has no default, this module cannot be used without setting it. --- variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/variables.tf b/variables.tf index d5592779..a30394c4 100644 --- a/variables.tf +++ b/variables.tf @@ -33,6 +33,7 @@ variable "function_location" { variable "location" { description = "The location of this cloud function" type = string + default = null } variable "description" {