Skip to main content
Version: Next

terraform

Available Commands

CommandDescription
<command>Runs an arbitrary Terraform command (action name is forwarded to terraform).
initInitializes Terraform providers and backend.
validateGenerate plan file.
selectSelect workspace.
planGenerate plan file.
applyApply plan file.
outputReads Terraform outputs and optionally writes stdout to a project-relative file.
destroyDestroy the deployment.

Project Initializer

Declares default outputs for Terraform actions.

project {
@terraform { }
}

Equivalent to:

project {
ignores = [ ".terraform/" "*.tfstate/" ]
outputs = [ "*.planfile" ]
}