Created
May 7, 2019 11:10
-
-
Save DevoKun/ad0410e07cc206133392a87b6d1f409c to your computer and use it in GitHub Desktop.
Revisions
-
DevoKun created this gist
May 7, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ Terraform Logging ================= Terraform Logging is configured using the `TF_LOG` environment variable. ## Valid logs levels **DEBUG**, **INFO**, **WARN**, **ERROR**, **TRACE** ## Enable the logs ```bash export TF_LOG="DEBUG" terraform init terraform plan ``` ## Log to a file ```bash export TF_LOG_PATH="terraform.log" ```