This message was deleted.
# google-cloud
s
This message was deleted.
g
To get some diagnostic data, here's a short snippet that should get you what you need in this case:
Copy code
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. If you were running other providers that don't use the Terraform bridge, there's another flag to use on the troubleshooting page. Regarding your specific question, I think you're running into this one: https://github.com/hashicorp/terraform-provider-google/issues/7200 (the Pulumi classic GCP provider is built on the same bridge as the Terraform one, so the errors are often very similar). See if the fix suggested there helps 🙂
h
thank you for the answer, I managed to move forward with it using
Copy code
pulumi refresh
after that next pulumi update started work for me
🙌 1