mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-08 22:24:22 -05:00
13 lines
278 B
Bash
Executable File
13 lines
278 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ ! -f "secrets.auto.tfvars" ]]; then
|
|
../create_service_account.sh -s notify-management -u config-bootstrap-deployer > secrets.auto.tfvars
|
|
fi
|
|
|
|
if [[ $# -gt 0 ]]; then
|
|
echo "Running terraform $@"
|
|
terraform $@
|
|
else
|
|
echo "Not running terraform"
|
|
fi
|