Jake Howard
c354085dfc
Separating state secrets and others made life a pain. Just do everything in an env file instead, which makes syncing a lot simpler
12 lines
141 B
Bash
Executable file
12 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd terraform/
|
|
|
|
# Load secrets from env file (if it exists)
|
|
set -a
|
|
source ./.env || true
|
|
set +a -x
|
|
|
|
terraform $@
|