10 lines
301 B
Bash
Executable File
10 lines
301 B
Bash
Executable File
# Select Development workspace
|
|
terraform workspace select dev
|
|
|
|
# Plan the current execution with variables and verify
|
|
GIT_HASH=$(git rev-parse --short HEAD)
|
|
terraform plan -var-file dev.tfvars -var git_version=${GIT_HASH}-dev -out plans/dev.plan
|
|
|
|
# Apply Configuration
|
|
terraform apply plans/dev.plan
|