skip to Main Content

Azure – How to configure "All APIs" policy using Bicep?

I configured APIM in Bicep like this: resource apiManagement 'Microsoft.ApiManagement/service@2019-12-01' = { name: appName location: location sku: { name: 'Developer' capacity: 1 } identity: { type: 'SystemAssigned' } properties: { publisherEmail: publisherEmail publisherName: publisherName } resource policy 'policies@2021-01-01-preview' = {…

VIEW QUESTION
Back To Top
Search