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