From 7be9e56d842b04d82c3f85ac251da5aa1af0d2da Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 9 Oct 2023 12:22:25 +0300 Subject: [PATCH] update secrets type --- vault/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vault/main.tf b/vault/main.tf index 6442d0f..2e38fb1 100644 --- a/vault/main.tf +++ b/vault/main.tf @@ -27,8 +27,8 @@ variable "vault_auth_id" { } variable "secrets" { - type = map(string) - description = "A map of secrets to set as environment variables." + type = map(list) + description = "A map of secret lists to set as environment variables. Each secret list is a list of paths to secrets to set as environment variables." default = {} }