7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#if var not exit provide default
|
|
TF_VAR_FILE=${TF_VAR_FILE:-"terraform.tfvars"}
|
|
|
|
terraform init
|
|
terraform apply -var-file=$TF_VAR_FILE |