terraform
terraform extension provides commands to handle a Terraform project.
⚠️
This extension relies on external Terraform state.
Available Commands
| Command | Description |
|---|---|
| <command> | Run a terraform command. |
| init | Init Terraform. |
| validate | Generate plan file. |
| select | Select workspace. |
| plan | Generate plan file. |
| destroy | Destroy the deployment. |
| apply | Apply plan file. |
Project Initializer
Provides default values for project.
project {
@terraform { }
}Equivalent to:
project {
ignores = [ ".terraform/" "*.tfstate/" ]
outputs = [ "*.planfile" ]
}Last updated on