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. |
plan | Generate plan file. |
apply | Apply plan file. |
Project Initializer
Provides default values for project.
project {
@terraform { }
}
Equivalent to:
project {
ignores = [ ".terraform/" "*.tfstate/" ]
outputs = [ "*.planfile" ]
}
Last updated on