7 lines
107 B
Bash
Executable file
7 lines
107 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -e
|
|
../setup.sh
|
|
rm -f terraform.tfstate*
|
|
./tf init
|
|
./tf plan
|
|
./tf apply -auto-approve
|