terraform
Available Commands
| Command | Description |
|---|---|
| dispatch | Runs an arbitrary Terraform command (action name is forwarded to terraform). |
| init | Initializes Terraform providers and backend. |
| validate | Generate plan file. |
| select | Select workspace. |
| plan | Generate plan file. |
| apply | Apply plan file. |
| destroy | Destroy the deployment. |
Project Initializer
Declares default outputs for Terraform actions.
project {
@terraform { }
}
Equivalent to:
project {
ignores = [ ".terraform/" "*.tfstate/" ]
outputs = [ "*.planfile" ]
}