-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathmain.bicep
322 lines (280 loc) · 8.73 KB
/
main.bicep
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
// ------------------
// PARAMETERS
// ------------------
@description('The client ID for Entra ID app registration')
param entraIDClientId string
@description('The client secret for Entra ID app registration')
@secure()
param entraIDClientSecret string
@description('The required scopes for authorization')
param oauthScopes string
@description('The encryption IV for session token')
@secure()
param encryptionIV string
@description('The encryption key for session token')
@secure()
param encryptionKey string
@description('The MCP client ID')
param mcpClientId string
param apimSku string
param apimLoggerName string = 'apim-logger'
param openAIConfig array = []
param openAIModelName string
param openAIModelVersion string
param openAIModelSKU string
param openAIDeploymentName string
param openAIAPIVersion string = '2024-02-01'
param location string = resourceGroup().location
param weatherAPIPath string = 'weather'
// ------------------
// VARIABLES
// ------------------
var resourceSuffix = uniqueString(subscription().id, resourceGroup().id)
var apiManagementName = 'apim-${resourceSuffix}'
var openAIAPIName = 'openai'
// Account for all placeholders in the polixy.xml file.
var policyXml = loadTextContent('policy.xml')
var updatedPolicyXml = replace(policyXml, '{backend-id}', (length(openAIConfig) > 1) ? 'openai-backend-pool' : openAIConfig[0].name)
var functionAppName = 'weather'
var deploymentStorageContainerName = 'app-package-${take(functionAppName, 32)}-${take(toLower(uniqueString(functionAppName, resourceSuffix)), 7)}'
var storageContainers = [{name: deploymentStorageContainerName}, {name: 'snippets'}]
// ------------------
// RESOURCES
// ------------------
resource containerRegistry 'Microsoft.ContainerRegistry/registries@2023-11-01-preview' = {
name: 'acr${resourceSuffix}'
location: location
sku: {
name: 'Basic'
}
properties: {
adminUserEnabled: true
anonymousPullEnabled: false
dataEndpointEnabled: false
encryption: {
status: 'disabled'
}
metadataSearch: 'Disabled'
networkRuleBypassOptions: 'AzureServices'
policies:{
quarantinePolicy: {
status: 'disabled'
}
trustPolicy: {
type: 'Notary'
status: 'disabled'
}
retentionPolicy: {
days: 7
status: 'disabled'
}
exportPolicy: {
status: 'enabled'
}
azureADAuthenticationAsArmPolicy: {
status: 'enabled'
}
softDeletePolicy: {
retentionDays: 7
status: 'disabled'
}
}
publicNetworkAccess: 'Enabled'
zoneRedundancy: 'Disabled'
}
}
resource containerAppEnv 'Microsoft.App/managedEnvironments@2023-11-02-preview' = {
name: 'aca-env-${resourceSuffix}'
location: location
properties: {
appLogsConfiguration: {
destination: 'log-analytics'
logAnalyticsConfiguration: {
customerId: lawModule.outputs.customerId
sharedKey: lawModule.outputs.primarySharedKey
}
}
}
}
resource containerAppUAI 'Microsoft.ManagedIdentity/userAssignedIdentities@2022-01-31-preview' = {
name: 'aca-mi-${resourceSuffix}'
location: location
}
var acrPullRole = resourceId('Microsoft.Authorization/roleDefinitions', '7f951dda-4ed3-4680-a7ca-43fe172d538d')
@description('This allows the managed identity of the container app to access the registry, note scope is applied to the wider ResourceGroup not the ACR')
resource containerAppUAIRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
name: guid(resourceGroup().id, containerAppUAI.id, acrPullRole)
properties: {
roleDefinitionId: acrPullRole
principalId: containerAppUAI.properties.principalId
principalType: 'ServicePrincipal'
}
}
resource weatherMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = {
name: 'aca-weather-${resourceSuffix}'
location: location
identity: {
type: 'UserAssigned'
userAssignedIdentities: {
'${containerAppUAI.id}': {}
}
}
properties: {
managedEnvironmentId: containerAppEnv.id
configuration: {
ingress: {
external: true
targetPort: 8080
allowInsecure: false
}
registries: [
{
identity: containerAppUAI.id
server: containerRegistry.properties.loginServer
}
]
}
template: {
containers: [
{
name: 'aca-${resourceSuffix}'
image: 'docker.io/jfxs/hello-world:latest'
resources: {
cpu: json('.5')
memory: '1Gi'
}
}
]
scale: {
minReplicas: 1
maxReplicas: 3
}
}
}
}
// 1. Log Analytics Workspace
module lawModule '../../modules/operational-insights/v1/workspaces.bicep' = {
name: 'lawModule'
}
var lawId = lawModule.outputs.id
// 2. Application Insights
module appInsightsModule '../../modules/monitor/v1/appinsights.bicep' = {
name: 'appInsightsModule'
params: {
lawId: lawId
customMetricsOptedInType: 'WithDimensions'
}
}
// ------------------
// RESOURCES
// ------------------
// https://learn.microsoft.com/azure/templates/microsoft.apimanagement/service
resource apimService 'Microsoft.ApiManagement/service@2024-06-01-preview' = {
name: apiManagementName
location: location
sku: {
name: apimSku
capacity: 1
}
properties: {
publisherEmail: '[email protected]'
publisherName: 'Microsoft'
}
identity: {
type: 'SystemAssigned'
}
}
// Create a logger only if we have an App Insights ID and instrumentation key.
resource apimLogger 'Microsoft.ApiManagement/service/loggers@2021-12-01-preview' = {
name: apimLoggerName
parent: apimService
properties: {
credentials: {
instrumentationKey: appInsightsModule.outputs.instrumentationKey
}
description: 'APIM Logger'
isBuffered: false
loggerType: 'applicationInsights'
resourceId: appInsightsModule.outputs.id
}
}
// 4. Cognitive Services
module openAIModule '../../modules/cognitive-services/v1/openai.bicep' = {
name: 'openAIModule'
params: {
openAIConfig: openAIConfig
openAIDeploymentName: openAIDeploymentName
openAIModelName: openAIModelName
openAIModelVersion: openAIModelVersion
openAIModelSKU: openAIModelSKU
apimPrincipalId: apimService.identity.principalId
lawId: lawId
}
}
// 5. APIM OpenAI API
module openAIAPIModule '../../modules/apim/v1/openai-api.bicep' = {
name: 'openAIAPIModule'
params: {
policyXml: updatedPolicyXml
openAIConfig: openAIModule.outputs.extendedOpenAIConfig
openAIAPIVersion: openAIAPIVersion
appInsightsInstrumentationKey: appInsightsModule.outputs.instrumentationKey
appInsightsId: appInsightsModule.outputs.id
}
}
resource api 'Microsoft.ApiManagement/service/apis@2024-06-01-preview' existing = {
parent: apimService
name: openAIAPIName
dependsOn: [
openAIAPIModule
]
}
module oauthAPIModule 'src/apim-oauth/oauth.bicep' = {
name: 'oauthAPIModule'
params: {
apimServiceName: apimService.name
entraIDTenantId: subscription().tenantId
entraIDClientId: entraIDClientId
entraIDClientSecret: entraIDClientSecret
oauthScopes: oauthScopes
encryptionIV: encryptionIV
encryptionKey: encryptionKey
mcpClientId: mcpClientId
}
}
module weatherAPIModule 'src/weather/apim-api/api.bicep' = {
name: 'weatherAPIModule'
params: {
apimServiceName: apimService.name
APIPath: weatherAPIPath
APIServiceURL: 'https://${weatherMCPServerContainerApp.properties.configuration.ingress.fqdn}/${weatherAPIPath}'
}
}
// Ignore the subscription that gets created in the APIM module and create three new ones for this lab.
resource apimSubscription 'Microsoft.ApiManagement/service/subscriptions@2024-06-01-preview' = {
name: 'apim-subscription'
parent: apimService
properties: {
allowTracing: true
displayName: 'Generic APIM Subscription'
scope: '/apis'
state: 'active'
}
dependsOn: [
api
]
}
// ------------------
// OUTPUTS
// ------------------
output containerRegistryName string = containerRegistry.name
output weatherMCPServerContainerAppResourceName string = weatherMCPServerContainerApp.name
output weatherMCPServerContainerAppFQDN string = weatherMCPServerContainerApp.properties.configuration.ingress.fqdn
output applicationInsightsAppId string = appInsightsModule.outputs.appId
output applicationInsightsName string = appInsightsModule.outputs.applicationInsightsName
output logAnalyticsWorkspaceId string = lawModule.outputs.customerId
output apimServiceId string = apimService.id
output apimResourceName string = apimService.name
output apimResourceGatewayURL string = apimService.properties.gatewayUrl
#disable-next-line outputs-should-not-contain-secrets
output apimSubscriptionKey string = apimSubscription.listSecrets().primaryKey