mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-11 07:42:20 -05:00
This changeset adjusts our references to the cloud.gov org we are using from gsa-tts-benefits-studio-prototyping to gsa-tts-benefits-studio. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
77 lines
1.5 KiB
Bash
Executable File
77 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
username=`whoami`
|
|
org="gsa-tts-benefits-studio"
|
|
|
|
usage="
|
|
$0: Create development infrastructure
|
|
|
|
Usage:
|
|
$0 -h
|
|
$0 [-u <USER NAME>] [-k] [-d]
|
|
|
|
Options:
|
|
-h: show help and exit
|
|
-u <USER NAME>: your username. Default: $username
|
|
-k: keep service user. Default is to remove them after run
|
|
-d: Destroy development resources. Default is to create them
|
|
|
|
Notes:
|
|
* Requires cf-cli@8
|
|
"
|
|
|
|
action="apply"
|
|
creds="remove"
|
|
|
|
while getopts ":hkdu:" opt; do
|
|
case "$opt" in
|
|
u)
|
|
username=${OPTARG}
|
|
;;
|
|
k)
|
|
creds="keep"
|
|
;;
|
|
d)
|
|
action="destroy"
|
|
;;
|
|
h)
|
|
echo "$usage"
|
|
exit 0
|
|
;;
|
|
esac
|
|
done
|
|
|
|
set -e
|
|
|
|
# ensure we're in the correct directory
|
|
cd $(dirname $0)
|
|
|
|
service_account="$username-terraform"
|
|
|
|
if [[ ! -s "secrets.auto.tfvars" ]]; then
|
|
# create user in notify-local-dev space to create s3 buckets
|
|
../create_service_account.sh -s notify-local-dev -u $service_account > secrets.auto.tfvars
|
|
|
|
# grant user access to notify-staging to create a service key for SES and SNS
|
|
cg_username=`cf service-key $service_account service-account-key | tail -n +2 | jq -r '.credentials.username'`
|
|
cf set-space-role $cg_username $org notify-staging SpaceDeveloper
|
|
fi
|
|
|
|
if [[ ! -f "../../.env" ]]; then
|
|
cp ../../sample.env ../../.env
|
|
fi
|
|
|
|
set +e
|
|
|
|
terraform init
|
|
terraform $action -var="username=$username"
|
|
|
|
set -e
|
|
|
|
if [[ $creds = "remove" ]]; then
|
|
../destroy_service_account.sh -s notify-local-dev -u $service_account
|
|
rm secrets.auto.tfvars
|
|
fi
|
|
|
|
exit 0
|