-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtemplate-latest.bicep
679 lines (651 loc) · 17.9 KB
/
template-latest.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
@description('Use Alphanumerics and can\'t use spaces, control characters, or these characters: ~ ! @ # $ % ^ & * ( ) = + _ [ ] { } \'\\\'\' | ; : . \' , < > / ?')
param suffixName string
param location string = resourceGroup().location
param adminUsername string = 'sqladmin'
param SQLMIAdministratorLogin string = 'sqladmin'
var storageAccountName = toLower('storage${suffixName}')
var dmsName = 'PoCMigrationService'
//var location = resourceGroup().location
var virtualMachineName = 'sqlvm-001'
var virtualMachineSize = 'Standard_D8s_v3'
var imageOffer = 'sql2019-ws2019'
var sqlSku = 'SQLDEV'
var storageWorkloadType = 'General'
var sqlDataDisksCount = 1
var dataPath = 'F:\\SQLData'
var sqlLogDisksCount = 1
var logPath = 'G:\\SQLLog'
//var adminUsername = 'sqladmin'
var adminPassword = 'My$upp3r$ecret'
var diskConfigurationType = 'NEW'
var dataDisksLuns = array(range(0, sqlDataDisksCount))
var logDisksLuns = array(range(sqlDataDisksCount, sqlLogDisksCount))
var dataDisks = {
createOption: 'Empty'
caching: 'ReadOnly'
writeAcceleratorEnabled: false
storageAccountType: 'Premium_LRS'
diskSizeGB: 1023
}
var tempDbPath = 'D:\\SQLTemp'
var virtualNetworksName = 'vnet-${suffixName}'
var networkInterfaceName = '${virtualMachineName}-nic'
var networkSecurityGroupName = '${virtualMachineName}-nsg'
var networkSecurityGroupRules = [
{
name: 'RDP'
properties: {
priority: 300
protocol: 'TCP'
access: 'Allow'
direction: 'Inbound'
sourceAddressPrefix: '*'
sourcePortRange: '*'
destinationAddressPrefix: '*'
destinationPortRange: '3389'
}
}
{
name: 'AllowAnyMS_SQLInbound'
properties: {
protocol: 'TCP'
sourcePortRange: '*'
destinationPortRange: '1433'
sourceAddressPrefix: '*'
destinationAddressPrefix: '*'
access: 'Allow'
priority: 310
direction: 'Inbound'
sourcePortRanges: []
destinationPortRanges: []
sourceAddressPrefixes: []
destinationAddressPrefixes: []
}
}
]
var publicIpAddressName = '${virtualMachineName}-publicip-${uniqueString(virtualMachineName)}'
var publicIpAddressType = 'Dynamic'
var publicIpAddressSku = 'Basic'
var SQLMIName = ((length(toLower('sqlmi-${suffixName}')) >= 60) ? substring(toLower('sqlmi-${toLower('sqlmi-${suffixName}')}'), 0, 60) : toLower('sqlmi-${suffixName}'))
// var SQLMIAdministratorLogin = 'sqladmin'
var SQLMIAdministratorLoginPassword = 'My$upp3r$ecret'
var SQLMIVirtualNetworkName = 'vnet-sqlmi'
var SQLMIAddressPrefix = '10.0.0.0/16'
var SQLMISubnetName = 'ManagedInstance'
var SQLMISubnetPrefix = '10.0.0.0/24'
var SQLMIskuName = 'GP_Gen5'
var SQLMIvCores = 8
var SQLMIStorageSizeInGB = 256
var SQLMILicenseType = 'LicenseIncluded'
var SQLMINetworkSecurityGroupName = 'sqlmi-${suffixName}-nsg'
var SQLMIRouteTableName = 'sqlmi-${suffixName}-route-table'
var jbVirtualMachineName = 'jb-migration'
var jbNetworkInterfaceName = 'jb-migration-nic'
var jbNetworkSecurityGroupName = 'jb-migration-nsg'
var jbPublicIpAddressName = 'jb-migration-ip'
var jbVirtualNetworksName = 'vnet-jb-migration'
var SQLMIManagementSubnetName = 'management'
var SQLMIManagementSubnetPrefix = '10.0.1.0/24'
resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
name: storageAccountName
location: location
sku: {
name: 'Standard_LRS'
}
properties: {
allowBlobPublicAccess: true
}
kind: 'Storage'
}
resource storageAccountName_default_migration 'Microsoft.Storage/storageAccounts/blobServices/containers@2022-05-01' = {
name: '${storageAccountName}/default/migration'
properties: {
publicAccess: 'Blob'
}
dependsOn: [
storageAccount
]
}
resource dms 'Microsoft.DataMigration/sqlMigrationServices@2022-03-30-preview' = {
name: dmsName
location: location
properties: {
}
}
resource publicIpAddress 'Microsoft.Network/publicIPAddresses@2021-08-01' = {
name: publicIpAddressName
location: location
sku: {
name: publicIpAddressSku
}
properties: {
publicIPAllocationMethod: publicIpAddressType
}
}
resource networkSecurityGroup 'Microsoft.Network/networkSecurityGroups@2021-08-01' = {
name: networkSecurityGroupName
location: location
properties: {
securityRules: networkSecurityGroupRules
}
}
resource virtualNetworks 'Microsoft.Network/virtualNetworks@2021-02-01' = {
name: virtualNetworksName
location: location
properties: {
addressSpace: {
addressPrefixes: [
'10.1.0.0/16'
]
}
dhcpOptions: {
dnsServers: []
}
subnets: [
{
name: 'default'
properties: {
addressPrefix: '10.1.0.0/24'
networkSecurityGroup: {
id: networkSecurityGroup.id
}
serviceEndpoints: []
delegations: []
privateEndpointNetworkPolicies: 'Disabled'
privateLinkServiceNetworkPolicies: 'Enabled'
}
}
]
virtualNetworkPeerings: []
enableDdosProtection: false
}
}
resource networkInterface 'Microsoft.Network/networkInterfaces@2021-08-01' = {
name: networkInterfaceName
location: location
properties: {
ipConfigurations: [
{
name: 'ipconfig1'
properties: {
privateIPAddress: '10.1.0.4'
privateIPAllocationMethod: 'Static'
subnet: {
id: resourceId('Microsoft.Network/virtualNetworks/subnets', virtualNetworksName, 'default')
}
publicIPAddress: {
id: publicIpAddress.id
}
}
}
]
enableAcceleratedNetworking: true
}
dependsOn: [
virtualNetworks
]
}
resource virtualMachine 'Microsoft.Compute/virtualMachines@2021-11-01' = {
name: virtualMachineName
location: location
properties: {
hardwareProfile: {
vmSize: virtualMachineSize
}
storageProfile: {
dataDisks: [for j in range(0, length(range(0, (sqlDataDisksCount + sqlLogDisksCount)))): {
lun: range(0, (sqlDataDisksCount + sqlLogDisksCount))[j]
createOption: dataDisks.createOption
caching: ((range(0, (sqlDataDisksCount + sqlLogDisksCount))[j] >= sqlDataDisksCount) ? 'None' : dataDisks.caching)
writeAcceleratorEnabled: dataDisks.writeAcceleratorEnabled
diskSizeGB: dataDisks.diskSizeGB
managedDisk: {
storageAccountType: dataDisks.storageAccountType
}
}]
osDisk: {
createOption: 'FromImage'
managedDisk: {
storageAccountType: 'Premium_LRS'
}
}
imageReference: {
publisher: 'MicrosoftSQLServer'
offer: imageOffer
sku: sqlSku
version: 'latest'
}
}
networkProfile: {
networkInterfaces: [
{
id: networkInterface.id
}
]
}
osProfile: {
computerName: virtualMachineName
adminUsername: adminUsername
adminPassword: adminPassword
windowsConfiguration: {
enableAutomaticUpdates: true
provisionVMAgent: true
}
}
}
}
resource virtualMachineName_CustomScriptExtension 'Microsoft.Compute/virtualMachines/extensions@2022-03-01' = {
parent: virtualMachine
name: 'CustomScriptExtension'
location: location
properties: {
autoUpgradeMinorVersion: true
publisher: 'Microsoft.Compute'
type: 'CustomScriptExtension'
typeHandlerVersion: '1.9'
settings: {
fileUris: [
'https://raw.githubusercontent.com/Azure/SQL-Migration-AzureSQL-PoC/main/script/SQLVMPostInstallation.ps1'
]
commandToExecute: 'powershell.exe -ExecutionPolicy Unrestricted -File SQLVMPostInstallation.ps1'
}
protectedSettings: {
}
}
}
resource Microsoft_SqlVirtualMachine_sqlVirtualMachines_virtualMachine 'Microsoft.SqlVirtualMachine/sqlVirtualMachines@2021-11-01-preview' = {
name: virtualMachineName
location: location
properties: {
virtualMachineResourceId: virtualMachine.id
sqlManagement: 'Full'
sqlServerLicenseType: 'PAYG'
storageConfigurationSettings: {
diskConfigurationType: diskConfigurationType
storageWorkloadType: storageWorkloadType
sqlDataSettings: {
luns: dataDisksLuns
defaultFilePath: dataPath
}
sqlLogSettings: {
luns: logDisksLuns
defaultFilePath: logPath
}
sqlTempDbSettings: {
defaultFilePath: tempDbPath
}
}
serverConfigurationsManagementSettings: {
sqlConnectivityUpdateSettings: {
connectivityType: 'PUBLIC'
port: 1433
sqlAuthUpdateUserName: adminUsername
sqlAuthUpdatePassword: adminPassword
}
}
}
}
resource SQLMINetworkSecurityGroup 'Microsoft.Network/networkSecurityGroups@2021-08-01' = {
name: SQLMINetworkSecurityGroupName
location: location
properties: {
securityRules: [
{
name: 'allow_tds_inbound'
properties: {
description: 'Allow access to data'
protocol: 'Tcp'
sourcePortRange: '*'
destinationPortRange: '1433'
sourceAddressPrefix: 'VirtualNetwork'
destinationAddressPrefix: '*'
access: 'Allow'
priority: 1000
direction: 'Inbound'
}
}
{
name: 'allow_redirect_inbound'
properties: {
description: 'Allow inbound redirect traffic to Managed Instance inside the virtual network'
protocol: 'Tcp'
sourcePortRange: '*'
destinationPortRange: '11000-11999'
sourceAddressPrefix: 'VirtualNetwork'
destinationAddressPrefix: '*'
access: 'Allow'
priority: 1100
direction: 'Inbound'
}
}
{
name: 'public_endpoint_inbound'
properties: {
description: 'Allow public endpoint inbound traffic'
protocol: 'TCP'
sourcePortRange: '*'
destinationPortRange: '3342'
sourceAddressPrefix: '*'
destinationAddressPrefix: '*'
access: 'Allow'
priority: 1300
direction: 'Inbound'
}
}
{
name: 'deny_all_inbound'
properties: {
description: 'Deny all other inbound traffic'
protocol: '*'
sourcePortRange: '*'
destinationPortRange: '*'
sourceAddressPrefix: '*'
destinationAddressPrefix: '*'
access: 'Deny'
priority: 4096
direction: 'Inbound'
}
}
{
name: 'deny_all_outbound'
properties: {
description: 'Deny all other outbound traffic'
protocol: '*'
sourcePortRange: '*'
destinationPortRange: '*'
sourceAddressPrefix: '*'
destinationAddressPrefix: '*'
access: 'Deny'
priority: 4096
direction: 'Outbound'
}
}
]
}
}
resource SQLMIRouteTable 'Microsoft.Network/routeTables@2021-08-01' = {
name: SQLMIRouteTableName
location: location
properties: {
disableBgpRoutePropagation: false
}
}
resource SQLMIVirtualNetwork 'Microsoft.Network/virtualNetworks@2021-08-01' = {
name: SQLMIVirtualNetworkName
location: location
properties: {
addressSpace: {
addressPrefixes: [
SQLMIAddressPrefix
]
}
subnets: [
{
name: SQLMISubnetName
properties: {
addressPrefix: SQLMISubnetPrefix
routeTable: {
id: SQLMIRouteTable.id
}
networkSecurityGroup: {
id: SQLMINetworkSecurityGroup.id
}
delegations: [
{
name: 'managedInstanceDelegation'
properties: {
serviceName: 'Microsoft.Sql/managedInstances'
}
}
]
}
}
{
name: SQLMIManagementSubnetName
properties: {
addressPrefix: SQLMIManagementSubnetPrefix
networkSecurityGroup: {
id: SQLMINetworkSecurityGroup.id
}
}
}
]
}
}
resource SQLMI 'Microsoft.Sql/managedInstances@2021-11-01-preview' = {
name: SQLMIName
location: location
sku: {
name: SQLMIskuName
}
identity: {
type: 'SystemAssigned'
}
properties: {
administratorLogin: SQLMIAdministratorLogin
administratorLoginPassword: SQLMIAdministratorLoginPassword
subnetId: resourceId('Microsoft.Network/virtualNetworks/subnets', SQLMIVirtualNetworkName, SQLMISubnetName)
storageSizeInGB: SQLMIStorageSizeInGB
vCores: SQLMIvCores
licenseType: SQLMILicenseType
publicDataEndpointEnabled: true
minimalTlsVersion: '1.2'
}
dependsOn: [
SQLMIVirtualNetwork
]
}
resource jbPublicIpAddress 'Microsoft.Network/publicIpAddresses@2019-06-01' = {
name: jbPublicIpAddressName
location: location
properties: {
publicIPAllocationMethod: 'Dynamic'
}
sku: {
name: 'Basic'
}
}
resource jbNetworkSecurityGroup 'Microsoft.Network/networkSecurityGroups@2019-06-01' = {
name: jbNetworkSecurityGroupName
location: location
properties: {
securityRules: [
{
name: 'RDP'
properties: {
priority: 300
protocol: 'Tcp'
access: 'Allow'
direction: 'Inbound'
sourceAddressPrefix: '*'
sourcePortRange: '*'
destinationAddressPrefix: '*'
destinationPortRange: '3389'
}
}
]
}
}
resource jbVirtualNetworks 'Microsoft.Network/virtualNetworks@2021-02-01' = {
name: jbVirtualNetworksName
location: location
properties: {
addressSpace: {
addressPrefixes: [
'10.2.0.0/16'
]
}
dhcpOptions: {
dnsServers: []
}
subnets: [
{
name: 'default'
properties: {
addressPrefix: '10.2.0.0/24'
networkSecurityGroup: {
id: jbNetworkSecurityGroup.id
}
serviceEndpoints: []
delegations: []
privateEndpointNetworkPolicies: 'Disabled'
privateLinkServiceNetworkPolicies: 'Enabled'
}
}
]
virtualNetworkPeerings: []
enableDdosProtection: false
}
}
resource jbVirtualNetworksName_peeringTo_SQLMIVirtualNetwork 'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2022-01-01' = {
parent: jbVirtualNetworks
name: 'peeringTo${SQLMIVirtualNetworkName}'
properties: {
allowVirtualNetworkAccess: true
allowForwardedTraffic: false
allowGatewayTransit: false
useRemoteGateways: false
remoteVirtualNetwork: {
id: SQLMIVirtualNetwork.id
}
remoteAddressSpace: {
addressPrefixes: [
SQLMIAddressPrefix
]
}
}
}
resource SQLMIVirtualNetworkName_peeringTo_jbVirtualNetworks 'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2022-01-01' = {
parent: SQLMIVirtualNetwork
name: 'peeringTo${jbVirtualNetworksName}'
properties: {
allowVirtualNetworkAccess: true
allowForwardedTraffic: false
allowGatewayTransit: false
useRemoteGateways: false
remoteVirtualNetwork: {
id: jbVirtualNetworks.id
}
remoteAddressSpace: {
addressPrefixes: [
'10.2.0.0/16'
]
}
}
}
resource jbVirtualNetworksName_peeringTo_virtualNetworks 'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2022-01-01' = {
parent: jbVirtualNetworks
name: 'peeringTo${virtualNetworksName}'
properties: {
allowVirtualNetworkAccess: true
allowForwardedTraffic: false
allowGatewayTransit: false
useRemoteGateways: false
remoteVirtualNetwork: {
id: virtualNetworks.id
}
remoteAddressSpace: {
addressPrefixes: [
'10.1.0.0/16'
]
}
}
}
resource virtualNetworksName_peeringTo_jbVirtualNetworks 'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2022-01-01' = {
parent: virtualNetworks
name: 'peeringTo${jbVirtualNetworksName}'
properties: {
allowVirtualNetworkAccess: true
allowForwardedTraffic: false
allowGatewayTransit: false
useRemoteGateways: false
remoteVirtualNetwork: {
id: jbVirtualNetworks.id
}
remoteAddressSpace: {
addressPrefixes: [
'10.2.0.0/16'
]
}
}
}
resource jbNetworkInterface 'Microsoft.Network/networkInterfaces@2019-06-01' = {
name: jbNetworkInterfaceName
location: location
properties: {
ipConfigurations: [
{
name: 'ipconfig1'
properties: {
subnet: {
id: resourceId('Microsoft.Network/virtualNetworks/subnets', jbVirtualNetworksName, 'default')
}
privateIPAllocationMethod: 'Dynamic'
publicIPAddress: {
id: jbPublicIpAddress.id
}
}
}
]
}
dependsOn: [
jbVirtualNetworks
]
}
resource jbVirtualMachine 'Microsoft.Compute/virtualMachines@2019-12-01' = {
name: jbVirtualMachineName
location: location
properties: {
osProfile: {
computerName: jbVirtualMachineName
adminUsername: SQLMIAdministratorLogin
adminPassword: SQLMIAdministratorLoginPassword
windowsConfiguration: {
provisionVMAgent: true
}
}
hardwareProfile: {
vmSize: 'Standard_B4ms'
}
storageProfile: {
osDisk: {
createOption: 'fromImage'
managedDisk: {
storageAccountType: 'Premium_LRS'
}
}
imageReference: {
publisher: 'MicrosoftWindowsDesktop'
offer: 'Windows-11'
sku: 'win11-22h2-pro'
version: 'latest'
}
}
networkProfile: {
networkInterfaces: [
{
id: jbNetworkInterface.id
}
]
}
}
}
resource JBvirtualMachineName_CustomScriptExtension 'Microsoft.Compute/virtualMachines/extensions@2022-03-01' = {
parent: jbVirtualMachine
name: 'CustomScriptExtension'
location: location
properties: {
autoUpgradeMinorVersion: true
publisher: 'Microsoft.Compute'
type: 'CustomScriptExtension'
typeHandlerVersion: '1.9'
settings: {
fileUris: [
'https://raw.githubusercontent.com/Azure/SQL-Migration-AzureSQL-PoC/main/script/JumpBoxPostInstallation.ps1'
]
commandToExecute: 'powershell.exe -ExecutionPolicy Unrestricted -File JumpBoxPostInstallation.ps1'
}
protectedSettings: {
}
}
}