-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding dnssec * Terraform sleep * API enabled logs * BigQuery Table Schema * Environment * Environments * Adding Terraform verbose
- Loading branch information
1 parent
5624c38
commit c4a5228
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: Terraform Verbose | ||
--- | ||
|
||
## What | ||
|
||
Terraform has an option that you can set that will log **everything** | ||
|
||
## Why | ||
|
||
Sometimes google provider does _weird_ things, so it's useful to debug things | ||
|
||
## How | ||
|
||
=== "TRACE" | ||
|
||
```shell | ||
export TF_LOG=TRACE | ||
``` | ||
|
||
=== "DEBUG" | ||
|
||
```shell | ||
export TF_LOG=DEBUG | ||
``` | ||
|
||
=== "INFO" | ||
|
||
```shell | ||
export TF_LOG=INFO | ||
``` | ||
|
||
=== "WARN" | ||
|
||
```shell | ||
export TF_LOG=WARN | ||
``` | ||
|
||
=== "ERROR" | ||
|
||
```shell | ||
export TF_LOG=ERROR | ||
``` |
This file contains 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 characters