-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathmain.bicep
476 lines (436 loc) · 13.7 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
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
// ------------------
// PARAMETERS
// ------------------
// Typically, parameters would be decorated with appropriate metadata and attributes, but as they are very repetetive in these labs we omit them for brevity.
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 githubAPIPath string = 'github'
param weatherAPIPath string = 'weather'
param servicenowAPIPath string = 'servicenow'
param serviceNowInstanceName string
// ------------------
// 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)
// ------------------
// 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 gitHubMCPServerContainerApp 'Microsoft.App/containerApps@2023-11-02-preview' = {
name: 'aca-github-${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'
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: 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: 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
}
}
}
}
// 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 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 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
}
}
// 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
]
}
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 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 = 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