Compare commits

...

2 Commits

Author SHA1 Message Date
9ff6cf7de7 Merge pull request 'chore: add terraform required version' (#24) from benvin/terraform_required_version into master
Reviewed-on: #24
2025-11-16 13:13:44 +11:00
c0d0888172 chore: add terraform required version
- set the terraform required version to 1.10+
2025-11-16 13:13:08 +11:00

View File

@ -5,7 +5,6 @@ locals {
vault_addr = "https://vault.service.consul:8200" vault_addr = "https://vault.service.consul:8200"
} }
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
# Configure this provider through the environment variables: # Configure this provider through the environment variables:
# - VAULT_ADDR # - VAULT_ADDR
@ -28,6 +27,7 @@ terraform {
lock = true lock = true
ca_file = "/etc/pki/tls/certs/ca-bundle.crt" ca_file = "/etc/pki/tls/certs/ca-bundle.crt"
} }
required_version = ">= 1.10"
required_providers { required_providers {
vault = { vault = {
source = "hashicorp/vault" source = "hashicorp/vault"