Robert Raicu

Results 9 comments of Robert Raicu

This would be the current code without unrelated things. ```csharp var name = "MySite"; var rgName = "MyResourceGroup"; var domain = "mydomain.com"; var subdomain = "mysubdomain"; var staticSite = new...

The issue is not with pulumi not waiting for completion. The resources do get created in the right order. The problem is the async nature of the DNS propagation and...

Managed to make it work this time tho. Key was to call WaitForTxtEntryDnsPropagation with .GetAwaiter().GetResult()

Well, I was happy a bit too soon @iwahbe . It seems that even if the code now waits for the dns check to succed, I am not using the...

Here is a very bad log of things that happened Fyi, I have the snipped above as a ComponentResource and deploying 3 static sites in parallel. ``` @ Updating.... +...

Adding custom timeouts does not seem to help either as the error is returned and is considered final although I set ` CustomTimeouts = new CustomTimeouts { Create = TimeSpan.FromMinutes(30),...

So I did not specify it, but I did use the exact Microsoft nameservers that the DNS Zone uses for my custom check and that went fine. The issue is...

Hello, I am also currently writing a wrapper for msal to add rbac. Luckily the current implementation still works with angular 17. Any news on the enhancement?