From e2b0c4c54e7ef2bed0d46381a18d84c0e6630f8f Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Tue, 18 Nov 2025 03:20:21 +0100 Subject: [PATCH] fix: Add missing vault_skip_tls_verify variable declaration Added vault_skip_tls_verify variable to fix Terraform validation error. This variable is referenced in provider.tf but was not declared in variables.tf. Default value is false for security, can be set to true for self-signed certificates in development/testing environments. --- variables.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/variables.tf b/variables.tf index 3f90006..752c2d0 100644 --- a/variables.tf +++ b/variables.tf @@ -133,3 +133,9 @@ variable "secret_id" { type = string sensitive = true } + +variable "vault_skip_tls_verify" { + description = "Skip TLS verification for Vault (useful for self-signed certificates)" + type = bool + default = false +}