From 8bc30e2bc02216f7fc688fe88fc4f4906f84c9a4 Mon Sep 17 00:00:00 2001 From: JoshLuedeman Date: Thu, 26 Mar 2026 18:04:10 -0400 Subject: [PATCH] chore: modernize Terraform and provider versions Update version constraints: - Terraform >= 1.3 -> >= 1.9 - azurerm ~> 3.36 -> ~> 3.116 Closes #1 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- infrastructure/terraform/versions.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/versions.tf b/infrastructure/terraform/versions.tf index 8e77fa7..e47b053 100644 --- a/infrastructure/terraform/versions.tf +++ b/infrastructure/terraform/versions.tf @@ -14,11 +14,11 @@ terraform { } */ - required_version = ">= 1.3" + required_version = ">= 1.9" required_providers { azurerm = { source = "hashicorp/azurerm" - version = "~> 3.36" + version = "~> 3.116" } null = { source = "hashicorp/null"