-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.bicep
474 lines (436 loc) · 14.2 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
import { raiPolicyInfo } from './ai_ml/ai-services.bicep'
targetScope = 'subscription'
@minLength(1)
@maxLength(64)
@description('Name of the workload which is used to generate a short unique hash used in all resources.')
param workloadName string
@minLength(1)
@description('Primary location for all resources.')
param location string
@description('Name of the resource group. If empty, a unique name will be generated.')
param resourceGroupName string = ''
@description('Tags for all resources.')
param tags object = {
WorkloadName: workloadName
Environment: 'Dev'
}
@description('Principal ID of the user that will be granted permission to access services.')
param userPrincipalId string
var abbrs = loadJsonContent('./abbreviations.json')
var roles = loadJsonContent('./roles.json')
var resourceToken = toLower(uniqueString(subscription().id, workloadName, location))
resource contributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.general.contributor
}
resource resourceGroup 'Microsoft.Resources/resourceGroups@2024-03-01' = {
name: !empty(resourceGroupName) ? resourceGroupName : '${abbrs.managementGovernance.resourceGroup}${workloadName}'
location: location
tags: union(tags, {})
}
var aiStudioIdentityResourceToken = toLower(uniqueString(resourceToken, 'ai-studio'))
var aiStudioIdentityName = '${abbrs.security.managedIdentity}${aiStudioIdentityResourceToken}'
module aiStudioIdentity './security/managed-identity.bicep' = {
name: aiStudioIdentityName
scope: resourceGroup
params: {
name: aiStudioIdentityName
location: location
tags: union(tags, { IdentityFor: aiStudioHubName })
}
}
module resouceGroupRoleAssignment './security/resource-group-role-assignment.bicep' = {
name: '${resourceGroup.name}-role-assignment'
scope: resourceGroup
params: {
roleAssignments: [
{
principalId: userPrincipalId
roleDefinitionId: contributorRole.id
principalType: 'User'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: contributorRole.id
principalType: 'ServicePrincipal'
}
]
}
}
resource storageAccountContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.storage.storageAccountContributor
}
resource storageBlobDataContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.storage.storageBlobDataContributor
}
resource storageFileDataPrivilegedContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.storage.storageFileDataPrivilegedContributor
}
resource storageTableDataContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.storage.storageTableDataContributor
}
var storageAccountName = '${abbrs.storage.storageAccount}${resourceToken}'
module storageAccount './storage/storage-account.bicep' = {
name: storageAccountName
scope: resourceGroup
params: {
name: storageAccountName
location: location
tags: union(tags, {})
sku: {
name: 'Standard_LRS'
}
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: storageAccountContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: storageBlobDataContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: storageFileDataPrivilegedContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: storageTableDataContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: storageAccountContributorRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: storageBlobDataContributorRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: storageFileDataPrivilegedContributorRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: storageTableDataContributorRole.id
principalType: 'User'
}
]
}
}
resource keyVaultAdministratorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.security.keyVaultAdministrator
}
var keyVaultName = '${abbrs.security.keyVault}${resourceToken}'
module keyVault './security/key-vault.bicep' = {
name: keyVaultName
scope: resourceGroup
params: {
name: keyVaultName
location: location
tags: union(tags, {})
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: keyVaultAdministratorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: keyVaultAdministratorRole.id
principalType: 'User'
}
]
}
}
var logAnalyticsWorkspaceName = '${abbrs.managementGovernance.logAnalyticsWorkspace}${resourceToken}'
module logAnalyticsWorkspace './management_governance/log-analytics-workspace.bicep' = {
name: logAnalyticsWorkspaceName
scope: resourceGroup
params: {
name: logAnalyticsWorkspaceName
location: location
tags: union(tags, {})
}
}
var applicationInsightsName = '${abbrs.managementGovernance.applicationInsights}${resourceToken}'
module applicationInsights './management_governance/application-insights.bicep' = {
name: applicationInsightsName
scope: resourceGroup
params: {
name: applicationInsightsName
location: location
tags: union(tags, {})
logAnalyticsWorkspaceName: logAnalyticsWorkspace.outputs.name
}
}
resource acrPushRole 'Microsoft.Authorization/roleDefinitions@2022-04-01' existing = {
scope: resourceGroup
name: roles.containers.acrPush
}
resource acrPullRole 'Microsoft.Authorization/roleDefinitions@2022-04-01' existing = {
scope: resourceGroup
name: roles.containers.acrPull
}
var containerRegistryName = '${abbrs.containers.containerRegistry}${resourceToken}'
module containerRegistry './containers/container-registry.bicep' = {
name: containerRegistryName
scope: resourceGroup
params: {
name: containerRegistryName
location: location
tags: union(tags, {})
sku: {
name: 'Basic'
}
adminUserEnabled: true
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: acrPushRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: acrPullRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: acrPushRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: acrPullRole.id
principalType: 'User'
}
]
}
}
resource cognitiveServicesUserRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.ai.cognitiveServicesUser
}
resource cognitiveServicesContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.ai.cognitiveServicesContributor
}
resource cognitiveServicesOpenAIContributorRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.ai.cognitiveServicesOpenAIContributor
}
var gpt4oModelDeploymentName = 'gpt-4o'
var gpt4oMiniDeploymentName = 'gpt-4o-mini'
var textEmbeddingModelDeploymentName = 'text-embedding-3-large'
var aiServicesName = '${abbrs.ai.aiServices}${resourceToken}'
module aiServices './ai_ml/ai-services.bicep' = {
name: aiServicesName
scope: resourceGroup
params: {
name: aiServicesName
location: location
tags: union(tags, {})
identityId: aiStudioIdentity.outputs.id
raiPolicies: [
{
name: workloadName
mode: 'Blocking'
prompt: {}
completion: {}
}
]
deployments: [
{
name: gpt4oModelDeploymentName
model: {
format: 'OpenAI'
name: 'gpt-4o'
version: '2024-08-06'
}
sku: {
name: 'GlobalStandard'
capacity: 10
}
raiPolicyName: workloadName
versionUpgradeOption: 'OnceCurrentVersionExpired'
}
{
name: gpt4oMiniDeploymentName
model: {
format: 'OpenAI'
name: 'gpt-4o-mini'
version: '2024-07-18'
}
sku: {
name: 'GlobalStandard'
capacity: 10
}
raiPolicyName: workloadName
versionUpgradeOption: 'OnceCurrentVersionExpired'
}
{
name: textEmbeddingModelDeploymentName
model: {
format: 'OpenAI'
name: 'text-embedding-3-large'
version: '1'
}
sku: {
name: 'Standard'
capacity: 115
}
raiPolicyName: workloadName
versionUpgradeOption: 'OnceCurrentVersionExpired'
}
]
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: cognitiveServicesUserRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: cognitiveServicesContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: cognitiveServicesOpenAIContributorRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: cognitiveServicesUserRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: cognitiveServicesContributorRole.id
principalType: 'User'
}
{
principalId: userPrincipalId
roleDefinitionId: cognitiveServicesOpenAIContributorRole.id
principalType: 'User'
}
]
}
}
resource azureMLDataScientistRole 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
scope: resourceGroup
name: roles.ai.azureMLDataScientist
}
var aiStudioHubName = '${abbrs.ai.aiHub}${resourceToken}'
module aiStudioHub './ai_ml/ai-hub.bicep' = {
name: aiStudioHubName
scope: resourceGroup
params: {
name: aiStudioHubName
friendlyName: 'Hub - Document Data Extraction'
descriptionInfo: 'Generated for Document Data Extraction demos'
location: location
tags: union(tags, {})
identityId: aiStudioIdentity.outputs.id
storageAccountId: storageAccount.outputs.id
keyVaultId: keyVault.outputs.id
applicationInsightsId: applicationInsights.outputs.id
containerRegistryId: containerRegistry.outputs.id
aiServicesName: aiServices.outputs.name
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: azureMLDataScientistRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: azureMLDataScientistRole.id
principalType: 'User'
}
]
}
}
var phi35MiniModelDeploymentName = 'phi-35-mini-${resourceToken}'
var aiStudioHubProjectName = '${abbrs.ai.aiHubProject}${workloadName}'
module aiStudioHubProject './ai_ml/ai-hub-project.bicep' = {
name: aiStudioHubProjectName
scope: resourceGroup
params: {
name: aiStudioHubProjectName
friendlyName: 'Project - Document Data Extraction'
descriptionInfo: 'Generated for Document Data Extraction demos'
location: location
tags: union(tags, {})
identityId: aiStudioIdentity.outputs.id
aiHubName: aiStudioHub.outputs.name
serverlessModels: [
{
name: phi35MiniModelDeploymentName
model: {
name: 'Phi-35-mini-instruct'
}
keyVaultConfig: {
name: keyVault.outputs.name
primaryKeySecretName: 'Phi-35-mini-instruct-PrimaryKey'
secondaryKeySecretName: 'Phi-35-mini-instruct-SecondaryKey'
}
}
]
roleAssignments: [
{
principalId: aiStudioIdentity.outputs.principalId
roleDefinitionId: azureMLDataScientistRole.id
principalType: 'ServicePrincipal'
}
{
principalId: userPrincipalId
roleDefinitionId: azureMLDataScientistRole.id
principalType: 'User'
}
]
}
}
output subscriptionInfo object = {
id: subscription().subscriptionId
tenantId: subscription().tenantId
}
output resourceGroupInfo object = {
name: resourceGroup.name
location: resourceGroup.location
workloadName: workloadName
}
output managedIdentityInfo object = {
id: aiStudioIdentity.outputs.id
name: aiStudioIdentity.outputs.name
principalId: aiStudioIdentity.outputs.principalId
clientId: aiStudioIdentity.outputs.clientId
}
output storageAccountInfo object = {
name: storageAccount.outputs.name
location: location
}
output keyVaultInfo object = {
name: keyVault.outputs.name
location: location
}
output aiModelsInfo object = {
openAIEndpoint: aiServices.outputs.openAIEndpoint
aiServicesEndpoint: aiServices.outputs.endpoint
gpt4oModelDeploymentName: gpt4oModelDeploymentName
textEmbeddingModelDeploymentName: textEmbeddingModelDeploymentName
phi35MiniEndpoint: aiStudioHubProject.outputs.serverlessModelDeployments[0].endpoint
phi35MiniPrimaryKeySecretName: aiStudioHubProject.outputs.serverlessModelDeployments[0].primaryKeySecretName
}