Using anonymous objects instead of Dictionary<string, object?> results into compile-time error

Advertisements I’m doing Pulumi C# Infrastructure as Code (IaC). Pulumi docs uses Dictionary<string, object?> which I want to replace with anonymous objects because they look better. The issue is that I’m getting a compile-time error with the anonymous objects. x is ImmutableArray<string>. Fine var xpolicyDoc = Output .All(tables.UserTradesTableArn) .Apply(x => new Dictionary<string, object?> { {… Read More Using anonymous objects instead of Dictionary<string, object?> results into compile-time error

How to use Azure Key Vault Python SDK to add access policy?

Advertisements I’m trying to find a way to dynamically add new access policies to an Azure Key Vault resource. My base stack is Pulumi (azure-native) which doesn’t provide the functionality to do that; it only allows to add access policies when creating the Key Vault resource. Apparently, there are some Python SDKs for working with… Read More How to use Azure Key Vault Python SDK to add access policy?