Add run.sh

This commit is contained in:
Santiago Lo Coco 2022-10-15 19:53:24 -03:00
parent a2444279e9
commit 172f29588a
1 changed files with 34 additions and 0 deletions

34
run.sh Normal file
View File

@ -0,0 +1,34 @@
#!/bin/sh
usage() {
cat <<EOF
usage: ${0##*/} [command]
-h Print this help message.
-v Validate terraform config.
-a Create or update infraestructure.
-d Destroy infraestructure.
EOF
exit 1
}
RUN=
while getopts "hvad" OPTION; do
case $OPTION in
a) RUN=apply ;;
v) RUN=validate ;;
d) RUN=destroy ;;
*) usage ;;
esac
done
dir="$PWD"
cd "$dir/terraform/organization/bsmsapp" || exit
terraform init
if [ "$RUN" = 'apply' ]; then
terraform plan
terraform apply --auto-approve
else
terraform "$RUN"
fi