From c0d0888172fa4f775485d5503148db4ec0e5957f Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 16 Nov 2025 13:13:08 +1100 Subject: [PATCH] chore: add terraform required version - set the terraform required version to 1.10+ --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 107c320..f5a5806 100644 --- a/main.tf +++ b/main.tf @@ -5,7 +5,6 @@ locals { vault_addr = "https://vault.service.consul:8200" } - #----------------------------------------------------------------------------- # Configure this provider through the environment variables: # - VAULT_ADDR @@ -28,6 +27,7 @@ terraform { lock = true ca_file = "/etc/pki/tls/certs/ca-bundle.crt" } + required_version = ">= 1.10" required_providers { vault = { source = "hashicorp/vault"