Hello! I am trying to set up managed identify for ...
# azure
w
Hello! I am trying to set up managed identify for my webapp, does anyone have an example I can look at? Pulumis documentation doesn't show any implementation code examples.
i
system or user managed?
if system, it’s pretty easy … (C# version incoming):
Copy code
return new AzureNative.Web.WebApp("app", new()
        {
            ...
            Identity = new AzureNative.Web.Inputs.ManagedServiceIdentityArgs
            {
                Type = AzureNative.Web.ManagedServiceIdentityType.SystemAssigned
            },
            ...
        });
w
thanks!