This message was deleted.
# azure
s
This message was deleted.
👀 1
m
I thought pulumi under the covers generates terraform. Downside of abstraction layers sometimes 🙂
e
No, the Azure-native provider doesn't depend on terraform
b
Does pulumi python SDK send ARM templates by using GO in the end? Do you have any idea how I can access this ARMT?
e
I thought Pulumi was interacting with the REST api tbh but the docs mention it interacts with Azure Resource Manager. The providers are open source so you could have a dig around but I'm hoping someone more knowledge might know the answer more definitely. tagging @tall-librarian-49374 as he'll probably know for sure (BTW, hi Mikhail 👋 !)
t
Hi @echoing-umbrella-72850 and all! Azure Native sends requests directly to Azure APIs, without ARM templates. I think it's called Azure Resource Manager REST APIs, so both "REST API" and "Azure Resource Manager" are kind of correct.
by using
pulumi up --logtostderr -v=10
That's probably the only way to see raw requests and response. The full command I use is
pulumi up --skip-preview --yes --debug -v=9 --logtostderr --logflow
🙏 2
b
Thanks a lot! I found an interestingly looking REST request in the log and hope that it will solve the issue with Azure/Pulumi 🙂
🙌 1