This message was deleted.
# automation-api
s
This message was deleted.
l
Slack has a feature called "Create a Text Snippet" in the "+" menu, which makes collapsible text snippets for large chunks of code. It's helpful for reading the channel. Also, using threads can help with big posts like this. Describe the problem in a sentence or two, in a way that helps people decide whether or not they might be able to help; then post the finer details within the thread off that first post.
b
@little-cartoon-10569 thanks for the suggestion. I unfortunately don't see that feature on my org account but let me try to describe the problem in short. We are trying out Pulumi automation API in order to provision resources on Azure cloud and use self-managed backend with Azure blob storage. After taking reference from https://github.com/pulumi/automation-api-examples/tree/main/nodejs/pulumiOverHttp-ts, I wrote a similar program that deploys resources such as resource group, storage account, storage container and finally blob pages on Azure having Azure blob storage as Pulumi backend. When I try to hit create or update endpoints, it is unable to create any of the resources but throws an error containing the message
failed to register new resource rg [azure:core/resourceGroup:ResourceGroup]: Resource monitor is terminating
and that seems to be a lot.
Feels like, it ties to https://github.com/pulumi/pulumi/issues/8236 somehow as I could see it when I tried to catch all the unhandledPromiseRejections in my code.