2021-05-09 09:10:21 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-10-21 13:52:37 +10:00
|
|
|
pushd "$(dirname "$0")" >/dev/null
|
|
|
|
|
|
|
|
# terraform cloud without the remote execution part
|
|
|
|
TF_FORCE_LOCAL_BACKEND="1" sops exec-env secrets.yaml "${*}"
|
|
|
|
|
|
|
|
popd >/dev/null
|