9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
# Select Development workspace
|
|
terraform workspace select prod
|
|
|
|
# Plan the current execution with variables and verify
|
|
terraform plan -var-file prod.tfvars -out plans/prod.plan
|
|
|
|
# Apply Configuration
|
|
terraform apply plans/prod.plan
|