From c398dc05f2143bb4cff00cbbe40896f6dcf992ac Mon Sep 17 00:00:00 2001 From: Jordan Acosta Date: Wed, 26 Jun 2024 08:17:31 -0700 Subject: [PATCH] fix: pin to old version of azure regions module (#12) Looks like the latest version of this module may have a bug. We verified that the version we started with still works, so we'll pin to that one for now. --- availability_zones.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/availability_zones.tf b/availability_zones.tf index fd39e21..23fd265 100644 --- a/availability_zones.tf +++ b/availability_zones.tf @@ -4,6 +4,6 @@ locals { module "regions" { source = "Azure/regions/azurerm" - version = ">= 0.5.2" + version = "0.5.2" recommended_regions_only = false }