sparse-intern-71089
01/06/2023, 9:31 PMclever-sunset-76585
01/06/2023, 11:51 PMidentity
property is available in a newer ARM API version for container registry. For example,
import * as containerRegistry from "@pulumi/azure-native/containerregistry";
const acr = new containerRegistry.v20220201preview.Registry("containerReg", {
identity: {
type: "SystemAssigned"
},
...
...
});
It might be available with earlier versions of the container registry ARM API too. Personally, I always check the most recent API version.ambitious-alligator-62127
01/07/2023, 9:35 PM