Skip to main content
Version: Next

terraform

Available Commands

CommandDescription
dispatchRuns 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.
destroyDestroy the deployment.

Project Initializer

Declares default outputs for Terraform actions.

project {
@terraform { }
}

Equivalent to:

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