2022-09-14 10:09:09 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
if [[ ! -f "secrets.auto.tfvars" ]]; then
|
2022-11-01 12:22:20 -04:00
|
|
|
../create_service_account.sh -s notify-management -u config-bootstrap-deployer > secrets.auto.tfvars
|
2022-09-14 10:09:09 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ $# -gt 0 ]]; then
|
|
|
|
|
echo "Running terraform $@"
|
|
|
|
|
terraform $@
|
|
|
|
|
else
|
|
|
|
|
echo "Not running terraform"
|
|
|
|
|
fi
|