forked from Azure-Samples/AI-Gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.bicep
More file actions
479 lines (440 loc) · 13.7 KB
/
main.bicep
File metadata and controls
479 lines (440 loc) · 13.7 KB
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// ------------------
// PARAMETERS
// ------------------
param aiServicesConfig array = []
param modelsConfig array = []
param apimSku string
param apimSubscriptionsConfig array = []
param inferenceAPIType string = 'AzureOpenAI'
param inferenceAPIPath string = 'inference' // Path to the inference API in the APIM service
param foundryProjectName string = 'default'
param githubAPIPath string = 'github'
param weatherAPIPath string = 'weather'
param oncallAPIPath string = 'oncall'
param servicenowAPIPath string = 'servicenow'
param serviceNowInstanceName string
// ------------------
// VARIABLES
// ------------------
var resourceSuffix = uniqueString(subscription().id, resourceGroup().id)
// ------------------
// RESOURCES
// ------------------
// 1. Log Analytics Workspace
module lawModule '../../modules/operational-insights/v1/workspaces.bicep' = {
name: 'lawModule'
}
// 2. Application Insights
module appInsightsModule '../../modules/monitor/v1/appinsights.bicep' = {
name: 'appInsightsModule'
params: {
lawId: lawModule.outputs.id
customMetricsOptedInType: 'WithDimensions'
}
}
// 3. API Management
module apimModule '../../modules/apim/v2/apim.bicep' = {
name: 'apimModule'
params: {
apimSku: apimSku
apimSubscriptionsConfig: apimSubscriptionsConfig
lawId: lawModule.outputs.id
appInsightsId: appInsightsModule.outputs.id
appInsightsInstrumentationKey: appInsightsModule.outputs.instrumentationKey
}
}
// 4. AI Foundry
module foundryModule '../../modules/cognitive-services/v3/foundry.bicep' = {
name: 'foundryModule'
params: {
aiServicesConfig: aiServicesConfig
modelsConfig: modelsConfig
apimPrincipalId: apimModule.outputs.principalId
foundryProjectName: foundryProjectName
}
}
// 5. APIM Inference API
module inferenceAPIModule '../../modules/apim/v2/inference-api.bicep' = {
name: 'inferenceAPIModule'
params: {
policyXml: loadTextContent('policy.xml')
apimLoggerId: apimModule.outputs.loggerId
aiServicesConfig: foundryModule.outputs.extendedAIServicesConfig
inferenceAPIType: inferenceAPIType
inferenceAPIPath: inferenceAPIPath
}
}
resource apimService 'Microsoft.ApiManagement/service@2024-06-01-preview' existing = {
name: 'apim-${resourceSuffix}'
dependsOn: [
inferenceAPIModule
]
}
resource containerRegistry 'Microsoft.ContainerRegistry/registries@2023-11-01-preview' = {
name: 'acr${resourceSuffix}'
location: resourceGroup().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: resourceGroup().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: resourceGroup().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 gitHubMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = {
name: 'aca-github-${resourceSuffix}'
location: resourceGroup().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'
env: [
{
name: 'APIM_GATEWAY_URL'
value: '${apimService.properties.gatewayUrl}/${githubAPIPath}'
}
{
name: 'AZURE_CLIENT_ID'
value: containerAppUAI.properties.clientId
}
{
name: 'AZURE_TENANT_ID'
value: subscription().tenantId
}
{
name: 'SUBSCRIPTION_ID'
value: subscription().subscriptionId
}
{
name: 'RESOURCE_GROUP_NAME'
value: resourceGroup().name
}
{
name: 'APIM_SERVICE_NAME'
value: apimService.name
}
{
name: 'POST_LOGIN_REDIRECT_URL'
value: 'http://www.bing.com'
}
{
name: 'APIM_IDENTITY_OBJECT_ID'
value: apimService.identity.principalId
}
]
resources: {
cpu: json('.5')
memory: '1Gi'
}
}
]
scale: {
minReplicas: 1
maxReplicas: 3
}
}
}
}
resource weatherMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = {
name: 'aca-weather-${resourceSuffix}'
location: resourceGroup().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
}
}
}
}
resource oncallMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = {
name: 'aca-oncall-${resourceSuffix}'
location: resourceGroup().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
}
}
}
}
resource servicenowMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = if (length(serviceNowInstanceName) > 0) {
name: 'aca-servicenow-${resourceSuffix}'
location: resourceGroup().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'
env: [
{
name: 'APIM_GATEWAY_URL'
value: '${apimService.properties.gatewayUrl}/${servicenowAPIPath}'
}
{
name: 'AZURE_CLIENT_ID'
value: containerAppUAI.properties.clientId
}
{
name: 'AZURE_TENANT_ID'
value: subscription().tenantId
}
{
name: 'SUBSCRIPTION_ID'
value: subscription().subscriptionId
}
{
name: 'RESOURCE_GROUP_NAME'
value: resourceGroup().name
}
{
name: 'APIM_SERVICE_NAME'
value: apimService.name
}
{
name: 'POST_LOGIN_REDIRECT_URL'
value: 'http://www.bing.com'
}
{
name: 'APIM_IDENTITY_OBJECT_ID'
value: apimService.identity.principalId
}
]
resources: {
cpu: json('.5')
memory: '1Gi'
}
}
]
scale: {
minReplicas: 1
maxReplicas: 3
}
}
}
}
module githubAPIModule 'src/github/apim-api/api.bicep' = {
name: 'githubAPIModule'
params: {
apimServiceName: apimService.name
APIPath: githubAPIPath
APIServiceURL: 'https://${gitHubMCPServerContainerApp.properties.configuration.ingress.fqdn}/${githubAPIPath}'
}
}
module weatherAPIModule 'src/weather/apim-api/api.bicep' = {
name: 'weatherAPIModule'
params: {
apimServiceName: apimService.name
APIPath: weatherAPIPath
APIServiceURL: 'https://${weatherMCPServerContainerApp.properties.configuration.ingress.fqdn}/${weatherAPIPath}'
}
}
module oncallAPIModule 'src/oncall/apim-api/api.bicep' = {
name: 'oncallAPIModule'
params: {
apimServiceName: apimService.name
APIPath: oncallAPIPath
APIServiceURL: 'https://${oncallMCPServerContainerApp.properties.configuration.ingress.fqdn}/${oncallAPIPath}'
}
}
module serviceNowAPIModule 'src/servicenow/apim-api/api.bicep' = if(length(serviceNowInstanceName) > 0) {
name: 'servicenowAPIModule'
params: {
apimServiceName: apimService.name
APIPath: servicenowAPIPath
APIServiceURL: 'https://${servicenowMCPServerContainerApp.properties.configuration.ingress.fqdn}/${servicenowAPIPath}'
serviceNowInstanceName: serviceNowInstanceName
}
}
var apimContributorRoleDefinitionID = resourceId('Microsoft.Authorization/roleDefinitions', '312a565d-c81f-4fd8-895a-4e21e48d571c')
resource roleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
scope: apimService
name: guid(subscription().id, resourceGroup().id, apimContributorRoleDefinitionID)
properties: {
roleDefinitionId: apimContributorRoleDefinitionID
principalId: containerAppUAI.properties.principalId
principalType: 'ServicePrincipal'
}
}
// ------------------
// OUTPUTS
// ------------------
output containerRegistryName string = containerRegistry.name
output gitHubMCPServerContainerAppResourceName string = gitHubMCPServerContainerApp.name
output gitHubMCPServerContainerAppFQDN string = gitHubMCPServerContainerApp.properties.configuration.ingress.fqdn
output weatherMCPServerContainerAppResourceName string = weatherMCPServerContainerApp.name
output weatherMCPServerContainerAppFQDN string = weatherMCPServerContainerApp.properties.configuration.ingress.fqdn
output oncallMCPServerContainerAppResourceName string = oncallMCPServerContainerApp.name
output oncallMCPServerContainerAppFQDN string = oncallMCPServerContainerApp.properties.configuration.ingress.fqdn
output servicenowMCPServerContainerAppResourceName string = (length(serviceNowInstanceName) > 0) ? servicenowMCPServerContainerApp.name: ''
output servicenowMCPServerContainerAppFQDN string = (length(serviceNowInstanceName) > 0) ? servicenowMCPServerContainerApp.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 = apimModule.outputs.id
output apimResourceName string = apimService.name
output apimResourceGatewayURL string = apimModule.outputs.gatewayUrl
output apimSubscriptions array = apimModule.outputs.apimSubscriptions
output foundryProjectEndpoint string = foundryModule.outputs.extendedAIServicesConfig[0].foundryProjectEndpoint