Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created January 17, 2022 19:52
Embed
What would you like to do?
// deploy.bicep
module identity 'modules/identity.bicep' = {
name: 'identityDeploy'
params: {
name: 'id-pocapplication-${suffix}'
location: location
}
}
// identity.bicep
resource idApplication 'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30' = {
name: name
location: location
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment