9 lines
205 B
Bash
Executable file
9 lines
205 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
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
|