sparse-intern-71089
04/05/2022, 4:04 PMgreat-queen-39697
04/06/2022, 9:07 PMTF_LOG
environment variable to get it to dump some data while it's running. Here's the basic command I'll use:
TF_LOG=TRACE pulumi up -v=11 --logtostderr 2>&1 | tee -a pulumi_log.txt
The environment variable asks the classic provider to bubble up data. The end of the command tells Pulumi to share logs both to stdout/stderr and append them to a file called pulumi_log.txt
. You could use that to get a bit more information and track down the oddity. Unfortunately, I don't see anything specific in your code that's raising a flag for me, so that's where I'd start.