-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.bicep
470 lines (434 loc) · 12.9 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
targetScope = 'resourceGroup'
/*** PARAMETERS ***/
@description('The resource ID of log analytics sink used by all the resources in the microservices. Will also be used for the app platform resources.')
@minLength(40)
param logAnalyticsResourceId string
@description('The Application Insights key used for all of the logging done by the microservices.')
@minLength(20)
param applicationInsightsInstrumentationKey string
@description('The resource ID of the existing Azure Container Registry that contains all the microservices.')
@minLength(40)
param containerRegistryResourceId string
@description('The Cosmos DB database name used by the Delivery service.')
@minLength(1)
param deliveryCosmosdbDatabaseName string
@description('The Cosmos DB collection name used by the Delivery service.')
@minLength(1)
param deliveryCosmosdbCollectionName string
@description('The Cosmos DB HTTP endpoint used by the Delivery service. Should be in the form of https://databaseName.documents.azure.com:443/')
@minLength(24)
param deliveryCosmosdbEndpoint string
@description('The FQDN of the Redis instance used by the Delivery service. Should be in the form of instanceName.redis.cache.windows.net')
@minLength(23)
param deliveryRedisEndpoint string
#disable-next-line no-hardcoded-env-urls
@description('The Key Vault HTTP endpoint used by the Delivery service. Should be in the form of https://instanceName.vault.azure.net/')
@minLength(24)
param deliveryKeyVaultUri string
@description('The Cosmos DB HTTP endpoint used by the Scheduler service. Should be in the form of https://databaseName.documents.azure.com:443/')
@minLength(24)
param droneSchedulerCosmosdbEndpoint string
#disable-next-line no-hardcoded-env-urls
@description('The Key Vault HTTP endpoint used by the Scheduler service. Should be in the form of https://instanceName.vault.azure.net/')
@minLength(24)
param droneSchedulerKeyVaultUri string
@description('The Service Bus HTTP endpoint used by the Workflow service. Should be in the form of https://namespaceName.servicebus.windows.net:443/')
@minLength(24)
param wokflowNamespaceEndpoint string
@description('The Service Bus Queue Access Policy Name for the Workflow service.')
@minLength(1)
param workflowNamespaceSASName string
@description('The Service Bus Queue Access Policy SaS key for the Workflow service.')
@secure()
@minLength(5)
param workflowNamespaceSASKey string
@description('The Service Bus Queue Name for the Workflow service.')
@minLength(1)
param workflowQueueName string
@description('The Mongo DB connection string for the Package service. Should be in the form of mongodb://user:[email protected]:10255/?ssl=true&replicaSet=globaldb&retrywrites=false&maxIdleTimeMS=120000&appName=@appName@')
@secure()
@minLength(60)
param packageMongodbConnectionString string
@description('The Service Bus namespace for the Ingestion service.')
@minLength(1)
param ingestionNamespaceName string
@description('The Service Bus Queue Access Policy Name for the Ingestion service.')
@minLength(1)
param ingestionNamespaceSASName string
@description('The Service Bus Queue Access Policy SaS key for the Ingestion service.')
@minLength(5)
param ingestionNamespaceSASKey string
@description('The Service Bus Queue Name for the Ingestion service.')
@minLength(1)
param ingestionQueueName string
@description('The location to deploy all new resources.')
@minLength(5)
param location string = resourceGroup().location
/*** EXISTING RESOURCES ***/
@description('The existing managed identity for the Delivery service.')
resource miDelivery 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
name: 'uid-delivery'
}
@description('The existing managed identity for the Scheduler service.')
resource miDroneScheduler 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
name: 'uid-dronescheduler'
}
@description('The existing managed identity for the Workflow service.')
resource miWorkflow 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
name: 'uid-workflow'
}
@description('The existing managed identity for the Package service.')
resource miPackage 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
name: 'uid-package'
}
@description('The existing managed identity for the Ingestion service.')
resource miIngestion 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' existing = {
name: 'uid-ingestion'
}
/*** RESOURCES ***/
// Drone Delivery App Environment
module env_shipping_dronedelivery 'environment.bicep' = {
name: 'env-shipping-dronedelivery'
params: {
location: location
logAnalyticsResourceId: logAnalyticsResourceId
}
}
// Delivery App
module ca_delivery 'container-http.bicep' = {
name: 'ca-delivery'
params: {
location: location
containerAppName: 'delivery-app'
containerAppUserAssignedResourceId: miDelivery.id
environmentId: env_shipping_dronedelivery.outputs.id
containerRegistryResourceId: containerRegistryResourceId
containerImage: 'shipping/delivery:0.1.0'
containerPort: 8080
isExternalIngress: false
revisionMode: 'multiple'
secrets: [
{
name: 'applicationinsights-instrumentationkey'
value: applicationInsightsInstrumentationKey
}
]
env: [
{
name: 'ApplicationInsights__InstrumentationKey'
secretref: 'applicationinsights-instrumentationkey'
}
{
name: 'CosmosDB-Endpoint'
value: deliveryCosmosdbEndpoint
}
{
name: 'DOCDB_DATABASEID'
value: deliveryCosmosdbDatabaseName
}
{
name: 'DOCDB_COLLECTIONID'
value: deliveryCosmosdbCollectionName
}
{
name: 'Redis-Endpoint'
value: deliveryRedisEndpoint
}
{
name: 'KEY_VAULT_URI'
value: deliveryKeyVaultUri
}
{
name: 'AZURE_CLIENT_ID'
value: miDelivery.properties.clientId
}
{
name: 'AzureServicesAuthConnectionString'
value: 'RunAs=App;AppId=${miDelivery.properties.clientId}'
}
]
}
}
// DroneScheduler App
module ca_dronescheduler 'container-http.bicep' = {
name: 'ca-dronescheduler'
params: {
location: location
containerAppName: 'dronescheduler-app'
containerAppUserAssignedResourceId: miDroneScheduler.id
environmentId: env_shipping_dronedelivery.outputs.id
containerRegistryResourceId: containerRegistryResourceId
containerImage: 'shipping/dronescheduler:0.1.0'
containerPort: 8080
isExternalIngress: false
revisionMode: 'multiple'
secrets: [
{
name: 'applicationinsights-instrumentationkey'
value: applicationInsightsInstrumentationKey
}
]
env: [
{
name: 'ApplicationInsights__InstrumentationKey'
secretref: 'applicationinsights-instrumentationkey'
}
{
name: 'CosmosDBEndpoint'
value: droneSchedulerCosmosdbEndpoint
}
{
name: 'CosmosDBConnectionMode'
value: 'Gateway'
}
{
name: 'CosmosDBConnectionProtocol'
value: 'Https'
}
{
name: 'CosmosDBMaxConnectionsLimit'
value: '50'
}
{
name: 'CosmosDBMaxParallelism'
value: '-1'
}
{
name: 'CosmosDBMaxBufferedItemCount'
value: '0'
}
{
name: 'FeatureManagement__UsePartitionKey'
value: 'false'
}
{
name: 'COSMOSDB_DATABASEID'
value: 'invoicing'
}
{
name: 'COSMOSDB_COLLECTIONID'
value: 'utilization'
}
{
name: 'LOGGING__ApplicationInsights__LOGLEVEL__DEFAULT'
value: 'Error'
}
{
name: 'KEY_VAULT_URI'
value: droneSchedulerKeyVaultUri
}
{
name: 'AZURE_CLIENT_ID'
value: miDroneScheduler.properties.clientId
}
{
name: 'AzureServicesAuthConnectionString'
value: 'RunAs=App;AppId=${miDroneScheduler.properties.clientId}'
}
]
}
}
// Workflow App
module ca_workflow 'container-http.bicep' = {
name: 'ca-workflow'
params: {
location: location
containerAppName: 'workflow-app'
containerAppUserAssignedResourceId: miWorkflow.id
environmentId: env_shipping_dronedelivery.outputs.id
containerRegistryResourceId: containerRegistryResourceId
containerImage: 'shipping/workflow:0.1.0'
revisionMode: 'single'
isExternalIngress: false
secrets: [
{
name: 'applicationinsights-instrumentationkey'
value: applicationInsightsInstrumentationKey
}
{
name: 'namespace-sas-key'
value: workflowNamespaceSASKey
}
]
env: [
{
name: 'ApplicationInsights__InstrumentationKey'
secretref: 'applicationinsights-instrumentationkey'
}
{
name: 'QueueName'
value: workflowQueueName
}
{
name: 'QueueEndpoint'
value: wokflowNamespaceEndpoint
}
{
name: 'QueueAccessPolicyName'
value: workflowNamespaceSASName
}
{
name: 'QueueAccessPolicyKey'
secretref: 'namespace-sas-key'
}
{
name: 'HEALTHCHECK_INITIAL_DELAY'
value: '30000'
}
{
name: 'SERVICE_URI_PACKAGE'
value: 'https://${ca_package.outputs.fqdn}/api/packages/'
}
{
name: 'SERVICE_URI_DRONE'
value: 'https://${ca_dronescheduler.outputs.fqdn}/api/DroneDeliveries/'
}
{
name: 'SERVICE_URI_DELIVERY'
value: 'https://${ca_delivery.outputs.fqdn}/api/Deliveries/'
}
{
name: 'LOGGING__ApplicationInsights__LOGLEVEL__DEFAULT'
value: 'Error'
}
{
name: 'SERVICEREQUEST__MAXRETRIES'
value: '3'
}
{
name: 'SERVICEREQUEST__CIRCUITBREAKERTHRESHOLD'
value: '0.5'
}
{
name: 'SERVICEREQUEST__CIRCUITBREAKERSAMPLINGPERIODSECONDS'
value: '5'
}
{
name: 'SERVICEREQUEST__CIRCUITBREAKERMINIMUMTHROUGHPUT'
value: '20'
}
{
name: 'SERVICEREQUEST__CIRCUITBREAKERBREAKDURATION'
value: '30'
}
{
name: 'SERVICEREQUEST__MAXBULKHEADSIZE'
value: '100'
}
{
name: 'SERVICEREQUEST__MAXBULKHEADQUEUESIZE'
value: '25'
}
{
name: 'AzureServicesAuthConnectionString'
value: 'RunAs=App;AppId=${miWorkflow.properties.clientId}'
}
]
}
}
// Package App
module ca_package 'container-http.bicep' = {
name: 'ca-package'
params: {
location: location
containerAppName: 'package-app'
containerAppUserAssignedResourceId: miPackage.id
environmentId: env_shipping_dronedelivery.outputs.id
containerRegistryResourceId: containerRegistryResourceId
containerImage: 'shipping/package:0.1.0'
containerPort: 80
isExternalIngress: false
revisionMode: 'multiple'
secrets: [
{
name: 'applicationinsights-instrumentationkey'
value: applicationInsightsInstrumentationKey
}
{
name: 'mongodb-connectrionstring'
value: packageMongodbConnectionString
}
]
env: [
{
name: 'APPINSIGHTS_INSTRUMENTATIONKEY'
secretref: 'applicationinsights-instrumentationkey'
}
{
name: 'CONNECTION_STRING'
secretref: 'mongodb-connectrionstring'
}
{
name: 'COLLECTION_NAME'
value: 'packages'
}
{
name: 'LOG_LEVEL'
value: 'error'
}
{
name: 'CONTAINER_NAME'
value: 'fabrikam-package'
}
]
}
}
// Ingestion App
module ca_ingestion 'container-http.bicep' = {
name: 'ca-ingestion'
params: {
location: location
containerAppName: 'ingestion-app'
containerAppUserAssignedResourceId: miIngestion.id
environmentId: env_shipping_dronedelivery.outputs.id
containerRegistryResourceId: containerRegistryResourceId
containerImage: 'shipping/ingestion:0.1.0'
containerPort: 80
cpu: '1'
memory: '2.0Gi'
isExternalIngress: true
revisionMode: 'multiple'
secrets: [
{
name: 'applicationinsights-instrumentationkey'
value: applicationInsightsInstrumentationKey
}
{
name: 'namespace-sas-key'
value: ingestionNamespaceSASKey
}
]
env: [
{
name: 'APPINSIGHTS_INSTRUMENTATIONKEY'
secretref: 'applicationinsights-instrumentationkey'
}
{
name: 'APPINSIGHTS_LOGGERLEVEL'
value: 'error'
}
{
name: 'CONTAINER_NAME'
value: 'fabrikam-ingestion'
}
{
name: 'QUEUE_NAMESPACE'
value: ingestionNamespaceName
}
{
name: 'QUEUE_NAME'
value: ingestionQueueName
}
{
name: 'QUEUE_KEYNAME'
value: ingestionNamespaceSASName
}
{
name: 'QUEUE_KEYVALUE'
secretref: 'namespace-sas-key'
}
]
}
}
/*** OUTPUTS ***/
output ingestionFqdn string = ca_ingestion.outputs.fqdn