From 29fe647772ce898ba91d28d1388c8ef43fc38dbf Mon Sep 17 00:00:00 2001 From: Benjamin Chrobot Date: Thu, 12 Aug 2021 07:32:00 -0400 Subject: [PATCH] fix: update vault and vault-init versions PR #94 relies on a feature introduced in Vault 1.4.0. This updates Vault to the latest version fixing #95. --- terraform/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index fd18c4a..53f21f6 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -196,13 +196,13 @@ variable "num_vault_pods" { variable "vault_container" { type = string - default = "vault:1.2.1" + default = "vault:1.8.1" description = "Name of the Vault container image to deploy. This can be specified like \"container:version\" or as a full container URL." } variable "vault_init_container" { type = string - default = "sethvargo/vault-init:1.0.0" + default = "sethvargo/vault-init:0.2.0" description = "Name of the Vault init container image to deploy. This can be specified like \"container:version\" or as a full container URL." }