Add run.sh
This commit is contained in:
parent
a2444279e9
commit
172f29588a
|
@ -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
|
Loading…
Reference in New Issue