So I want to create an Azure Application Configura...
# azure
d
So I want to create an Azure Application Configuration (
appconfiguration
) and the following definition works:
Copy code
const appConfig = new azure.appconfiguration.ConfigurationStore(
  "appConfigName",
  {
    name: "appConfigName",
    resourceGroupName: resourceGroup.name,
    sku: "standard"
  }
);
But I want to assign a System Identity to it and there's no
Identity
property. What's the best way to add it afterwards?