wonderful-twilight-70958
03/28/2022, 5:41 PM-v 10
doesn't seem to do anything 👀 (I get no additional debugging output)great-queen-39697
03/29/2022, 11:18 PMTF_LOG=TRACE
with the logging level you're needing to get the diagnostics data from the provider itself. Here's the basic command I'll use:
TF_LOG=TRACE pulumi up -v=11 --logflow --logtostderr 2>&1 | tee -a pulumi_log.txt
The environment variable asks the classic provider to bubble up data. The --logflow
flag bubbles up data from providers that aren't on the Terraform bridge. The end of the command tells Pulumi to share logs both to stdout/stderr and append them to a file called pulumi_log.txt
.wonderful-twilight-70958
03/29/2022, 11:43 PMgreat-queen-39697
03/29/2022, 11:50 PMbig-state-95297
04/12/2022, 3:21 AMwonderful-twilight-70958
04/12/2022, 4:07 AM