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