Skip to content

Latest commit

 

History

History
 
 

Terragrunt

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Terragrunt Documentation

Terragrunt Commands

  • When running a terragrunt apply, what is the difference between terragrunt apply -auto-approve vs terragrunt apply --terragrunt-non-interactive?

  • -auto-approve skips interactive prompts from Terraform, such as the prompt to check the plan output before running apply. --terragrunt-non-interactiveskips interactive prompts from Terragrunt, such as the prompt to create an S3 bucket as a state backend if the bucket doesn't exist already.

From each Module

terragrunt init
terragrunt plan
terragrunt apply
terragrunt destroy
terragrunt apply --terragrunt-non-interactive
terragrunt destroy --terragrunt-non-interactive

From a root module

terragrunt plan-all
terragrunt apply-all
terragrunt destroy-all
terragrunt apply-all --terragrunt-non-interactive
terragrunt destroy-all --terragrunt-non-interactive