From c30add1848c3fcee96e430d4522ae1d948e7c000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 5 Jul 2023 13:51:59 +0200 Subject: [PATCH] tf.sh: no longer ignore sops decryption errors --- targets/admins/tf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/admins/tf.sh b/targets/admins/tf.sh index e0f5f53..6f6b89a 100755 --- a/targets/admins/tf.sh +++ b/targets/admins/tf.sh @@ -3,7 +3,7 @@ set -euo pipefail rm -f .terraform.lock.hcl if grep -q .sops terraform.tfstate; then - sops -i -d terraform.tfstate || true + sops -i -d terraform.tfstate fi cleanup() { sops -i -e terraform.tfstate