LinuxCommandLibrary

terragrunt

Keep your Terraform CLI arguments DRY.

TLDR

Generate and show an execution plan

$ terragrunt plan
copy


Build or change infrastructure
$ terragrunt apply
copy


Show current deployment (from state)
$ terragrunt show
copy


Show module output values
$ terragrunt output
copy


Destroy Terraform-managed infrastructure
$ terragrunt destroy
copy


Build or change infrastructure from a tree of Terragrunt modules (stack)
$ terragrunt run-all apply
copy

Copied to clipboard