File size: 1,702 Bytes
9595e1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
param name string
param location string = resourceGroup().location
param tags object = {}
@description('The email address of the owner of the service')
@minLength(1)
param publisherEmail string = '[email protected]'
@description('The name of the owner of the service')
@minLength(1)
param publisherName string = 'n/a'
@description('The pricing tier of this API Management service')
@allowed([
'Consumption'
'Developer'
'Standard'
'Premium'
])
param sku string = 'Consumption'
@description('The instance size of this API Management service.')
@allowed([ 0, 1, 2 ])
param skuCount int = 0
@description('Azure Application Insights Name')
param applicationInsightsName string
resource apimService 'Microsoft.ApiManagement/service@2021-08-01' = {
name: name
location: location
tags: union(tags, { 'azd-service-name': name })
sku: {
name: sku
capacity: (sku == 'Consumption') ? 0 : ((sku == 'Developer') ? 1 : skuCount)
}
properties: {
publisherEmail: publisherEmail
publisherName: publisherName
}
}
resource apimLogger 'Microsoft.ApiManagement/service/loggers@2021-12-01-preview' = if (!empty(applicationInsightsName)) {
name: 'app-insights-logger'
parent: apimService
properties: {
credentials: {
instrumentationKey: applicationInsights.properties.InstrumentationKey
}
description: 'Logger to Azure Application Insights'
isBuffered: false
loggerType: 'applicationInsights'
resourceId: applicationInsights.id
}
}
resource applicationInsights 'Microsoft.Insights/components@2020-02-02' existing = if (!empty(applicationInsightsName)) {
name: applicationInsightsName
}
output apimServiceName string = apimService.name
|