Terraform | Disable Warnings
Context
Question
How to disable warnings in terraform?
Answer
Running the commands using that flag:
$ terraform plan -compact-warnings
Or defining them as environment variables:
export TF_CLI_ARGS_plan="-compact-warnings"
export TF_CLI_ARGS_apply="-compact-warnings"
What I Learned
Resources
Tags: