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