AzureTRE/devops/terraform/deploy.sh

15 строки
252 B
Bash
Executable File

#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset
# set -o xtrace
PLAN_FILE="devops.tfplan"
terraform init -input=false -backend=true -reconfigure
terraform plan -out ${PLAN_FILE}
terraform apply -auto-approve ${PLAN_FILE}
./update_tags.sh