-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
resources.bicep
504 lines (482 loc) · 13.4 KB
/
resources.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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
param name string
param location string
param resourceToken string
param principalId string
@secure()
param databasePassword string
var appName = '${name}-${resourceToken}'
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2024-01-01' = {
location: location
name: '${appName}Vnet'
properties: {
addressSpace: {
addressPrefixes: ['10.0.0.0/16']
}
subnets: [
{
name: 'cache-subnet'
properties: {
addressPrefix: '10.0.0.0/24'
privateEndpointNetworkPolicies: 'Disabled'
}
}
{
name: 'webapp-subnet'
properties: {
addressPrefix: '10.0.1.0/24'
delegations: [
{
name: 'dlg-appServices'
properties: {
serviceName: 'Microsoft.Web/serverfarms'
}
}
]
}
}
{
name: 'database-subnet'
properties: {
addressPrefix: '10.0.2.0/24'
privateEndpointNetworkPolicies: 'Disabled'
}
}
{
name: 'vault-subnet'
properties: {
addressPrefix: '10.0.3.0/24'
privateEndpointNetworkPolicies: 'Disabled'
}
}
]
}
resource subnetForDb 'subnets' existing = {
name: 'database-subnet'
}
resource subnetForVault 'subnets' existing = {
name: 'vault-subnet'
}
resource subnetForApp 'subnets' existing = {
name: 'webapp-subnet'
}
resource subnetForCache 'subnets' existing = {
name: 'cache-subnet'
}
}
// Resources needed to secure Key Vault behind a private endpoint
resource privateDnsZoneKeyVault 'Microsoft.Network/privateDnsZones@2020-06-01' = {
name: 'privatelink.vaultcore.azure.net'
location: 'global'
resource vnetLink 'virtualNetworkLinks@2020-06-01' = {
location: 'global'
name: '${appName}-vaultlink'
properties: {
virtualNetwork: {
id: virtualNetwork.id
}
registrationEnabled: false
}
}
}
resource vaultPrivateEndpoint 'Microsoft.Network/privateEndpoints@2023-04-01' = {
name: '${appName}-vault-privateEndpoint'
location: location
properties: {
subnet: {
id: virtualNetwork::subnetForVault.id
}
privateLinkServiceConnections: [
{
name: '${appName}-vault-privateEndpoint'
properties: {
privateLinkServiceId: keyVault.id
groupIds: ['vault']
}
}
]
}
resource privateDnsZoneGroup 'privateDnsZoneGroups@2024-01-01' = {
name: 'default'
properties: {
privateDnsZoneConfigs: [
{
name: 'vault-config'
properties: {
privateDnsZoneId: privateDnsZoneKeyVault.id
}
}
]
}
}
}
// Resources needed to secure Azure SQL Database behind a private endpoint
resource dbPrivateEndpoint 'Microsoft.Network/privateEndpoints@2023-04-01' = {
name: '${appName}-db-privateEndpoint'
location: location
properties: {
subnet: {
id: virtualNetwork::subnetForDb.id
}
privateLinkServiceConnections: [
{
name: '${appName}-db-privateEndpoint'
properties: {
privateLinkServiceId: dbserver.id
groupIds: ['sqlServer']
}
}
]
}
resource dbPrivateDnsZoneGroup 'privateDnsZoneGroups@2024-01-01' = {
name: 'default'
properties: {
privateDnsZoneConfigs: [
{
name: 'database-config'
properties: {
privateDnsZoneId: privateDnsZoneDB.id
}
}
]
}
}
}
resource privateDnsZoneDB 'Microsoft.Network/privateDnsZones@2020-06-01' = {
name: 'privatelink.database.windows.net'
location: 'global'
dependsOn: [
virtualNetwork
]
resource privateDnsZoneLinkDB 'virtualNetworkLinks@2020-06-01' = {
name: '${appName}-dblink'
location: 'global'
properties: {
virtualNetwork: {
id: virtualNetwork.id
}
registrationEnabled: false
}
}
}
// Resources needed to secure Redis Cache behind a private endpoint
resource cachePrivateEndpoint 'Microsoft.Network/privateEndpoints@2023-04-01' = {
name: '${appName}-cache-privateEndpoint'
location: location
properties: {
subnet: {
id: virtualNetwork::subnetForCache.id
}
privateLinkServiceConnections: [
{
name: '${appName}-cache-privateEndpoint'
properties: {
privateLinkServiceId: redisCache.id
groupIds: ['redisCache']
}
}
]
}
resource privateDnsZoneGroup 'privateDnsZoneGroups' = {
name: 'default'
properties: {
privateDnsZoneConfigs: [
{
name: 'cache-config'
properties: {
privateDnsZoneId: privateDnsZoneCache.id
}
}
]
}
}
}
resource privateDnsZoneCache 'Microsoft.Network/privateDnsZones@2020-06-01' = {
name: 'privatelink.redis.cache.windows.net'
location: 'global'
dependsOn: [
virtualNetwork
]
resource privateDnsZoneLinkCache 'virtualNetworkLinks@2020-06-01' = {
name: '${appName}-cachelink'
location: 'global'
properties: {
virtualNetwork: {
id: virtualNetwork.id
}
registrationEnabled: false
}
}
}
// The Key Vault is used to manage SQL database and redis secrets.
// Current user has the admin permissions to configure key vault secrets, but by default doesn't have the permissions to read them.
resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' = {
name: '${take(replace(appName, '-', ''), 17)}-vault'
location: location
properties: {
enableRbacAuthorization: true
tenantId: subscription().tenantId
sku: { family: 'A', name: 'standard' }
// Only allow requests from the private endpoint in the VNET.
publicNetworkAccess: 'Disabled' // To see the secret in the portal, change to 'Enabled'
networkAcls: {
defaultAction: 'Deny' // To see the secret in the portal, change to 'Allow'
bypass: 'None'
}
}
}
// Grant the current user with key vault secret user role permissions over the key vault. This lets you inspect the secrets, such as in the portal
// If you remove this section, you can't read the key vault secrets, but the app still has access with its managed identity.
resource keyVaultSecretUserRoleRoleDefinition 'Microsoft.Authorization/roleDefinitions@2018-01-01-preview' existing = {
scope: subscription()
name: '4633458b-17de-408a-b874-0445c86b69e6' // The built-in Key Vault Secret User role
}
resource keyVaultSecretUserRoleAssignment 'Microsoft.Authorization/roleAssignments@2020-08-01-preview' = {
scope: keyVault
name: guid(resourceGroup().id, principalId, keyVaultSecretUserRoleRoleDefinition.id)
properties: {
roleDefinitionId: keyVaultSecretUserRoleRoleDefinition.id
principalId: principalId
principalType: 'User'
}
}
// The SQL Database server is configured to be the minimum pricing tier
resource dbserver 'Microsoft.Sql/servers@2023-05-01-preview' = {
location: location
name: '${appName}-server'
properties: {
administratorLogin: '${appName}-server-admin'
administratorLoginPassword: databasePassword
publicNetworkAccess: 'Disabled'
restrictOutboundNetworkAccess: 'Disabled'
}
resource db 'databases@2023-05-01-preview' = {
location: location
name: '${appName}-database'
sku: {
name: 'GP_S_Gen5'
tier: 'GeneralPurpose'
family: 'Gen5'
capacity: 1
}
}
}
// The Redis cache is configured to the minimum pricing tier
resource redisCache 'Microsoft.Cache/Redis@2023-08-01' = {
name: '${appName}-cache'
location: location
properties: {
sku: {
name: 'Basic'
family: 'C'
capacity: 0
}
redisConfiguration: {}
enableNonSslPort: false
redisVersion: '6'
publicNetworkAccess: 'Disabled'
}
}
// The App Service plan is configured to the B1 pricing tier
resource appServicePlan 'Microsoft.Web/serverfarms@2022-09-01' = {
name: '${appName}-plan'
location: location
kind: 'linux'
properties: {
reserved: true
}
sku: {
name: 'B1'
}
}
resource web 'Microsoft.Web/sites@2022-09-01' = {
name: appName
location: location
tags: {'azd-service-name': 'web'} // Needed by AZD
properties: {
siteConfig: {
linuxFxVersion: 'DOTNETCORE|8.0' // Set to .NET 8 (LTS)
vnetRouteAllEnabled: true // Route outbound traffic to the VNET
ftpsState: 'Disabled'
appCommandLine: './migrationsbundle -- --environment Production && dotnet "DotNetCoreSqlDb.dll"'
}
serverFarmId: appServicePlan.id
httpsOnly: true
}
// Disable basic authentication for FTP and SCM
resource ftp 'basicPublishingCredentialsPolicies@2023-12-01' = {
name: 'ftp'
properties: {
allow: false
}
}
resource scm 'basicPublishingCredentialsPolicies@2023-12-01' = {
name: 'scm'
properties: {
allow: false
}
}
// Enable App Service native logs
resource logs 'config' = {
name: 'logs'
properties: {
applicationLogs: {
fileSystem: {
level: 'Information'
}
}
detailedErrorMessages: {
enabled: true
}
failedRequestsTracing: {
enabled: true
}
httpLogs: {
fileSystem: {
enabled: true
retentionInDays: 1
retentionInMb: 35
}
}
}
}
// Enable VNET integration
resource webappVnetConfig 'networkConfig' = {
name: 'virtualNetwork'
properties: {
subnetResourceId: virtualNetwork::subnetForApp.id
}
}
dependsOn: [virtualNetwork]
}
// Service Connector from the app to the key vault, which generates the connection settings for the App Service app
// The application code doesn't make any direct connections to the key vault, but the setup expedites the managed identity access
// so that the cache connector can be configured with key vault references.
resource vaultConnector 'Microsoft.ServiceLinker/linkers@2024-04-01' = {
scope: web
name: 'vaultConnector'
properties: {
clientType: 'dotnet'
targetService: {
type: 'AzureResource'
id: keyVault.id
}
authInfo: {
authType: 'systemAssignedIdentity' // Use a system-assigned managed identity. No password is used.
}
vNetSolution: {
type: 'privateLink'
}
}
dependsOn: [
vaultPrivateEndpoint
]
}
// Connector to the SQL Server database, which generates the connection string for the ASP.NET Core application
resource dbConnector 'Microsoft.ServiceLinker/linkers@2024-04-01' = {
scope: web
name: 'defaultConnector'
properties: {
targetService: {
type: 'AzureResource'
id: dbserver::db.id
}
authInfo: {
authType: 'secret'
name: '${appName}-server-admin'
secretInfo: {
secretType: 'rawValue'
value: databasePassword
}
}
secretStore: {
keyVaultId: keyVault.id // Configure secrets as key vault references. No secret is exposed in App Service.
}
clientType: 'dotnet-connectionString' // Generate a .NET connection string. For app setting, use 'dotnet' instead
vNetSolution: {
type: 'privateLink'
}
}
}
// Service Connector from the app to the cache, which generates an app setting for the ASP.NET Core application
resource cacheConnector 'Microsoft.ServiceLinker/linkers@2024-04-01' = {
scope: web
name: 'RedisConnector'
properties: {
clientType: 'dotnet'
targetService: {
type: 'AzureResource'
id: resourceId('Microsoft.Cache/Redis/Databases', redisCache.name, '0')
}
authInfo: {
authType: 'accessKey' // Configure secrets as key vault references. No secret is exposed in App Service.
}
secretStore: {
keyVaultId: keyVault.id
}
vNetSolution: {
type: 'privateLink'
}
}
dependsOn: [
cachePrivateEndpoint
]
}
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2023-09-01' = {
name: '${appName}-workspace'
location: location
properties: any({
retentionInDays: 30
features: {
searchVersion: 1
}
sku: {
name: 'PerGB2018'
}
})
}
// Enable log shipping from the App Service app to the Log Analytics workspace.
resource webdiagnostics 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = {
name: 'AllLogs'
scope: web
properties: {
workspaceId: logAnalyticsWorkspace.id
logs: [
{
category: 'AppServiceHTTPLogs'
enabled: true
}
{
category: 'AppServiceConsoleLogs'
enabled: true
}
{
category: 'AppServiceAppLogs'
enabled: true
}
{
category: 'AppServiceAuditLogs'
enabled: true
}
{
category: 'AppServiceIPSecAuditLogs'
enabled: true
}
{
category: 'AppServicePlatformLogs'
enabled: true
}
]
metrics: [
{
category: 'AllMetrics'
enabled: true
}
]
}
}
output WEB_URI string = 'https://${web.properties.defaultHostName}'
output CONNECTION_SETTINGS array = map(concat(dbConnector.listConfigurations().configurations, cacheConnector.listConfigurations().configurations, vaultConnector.listConfigurations().configurations), config => config.name)
output WEB_APP_LOG_STREAM string = format('https://portal.azure.com/#@/resource{0}/logStream', web.id)
output WEB_APP_SSH string = format('https://{0}.scm.azurewebsites.net/webssh/host', web.name)
output WEB_APP_CONNECTIONSTRINGS string = format('https://portal.azure.com/#@/resource{0}/connectionStrings', web.id)
output WEB_APP_APPSETTINGS string = format('https://portal.azure.com/#@/resource{0}/environmentVariablesAppSettings', web.id)