-
Notifications
You must be signed in to change notification settings - Fork 140
/
mlz.json
8804 lines (8804 loc) · 473 KB
/
mlz.json
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
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.31.92.45157",
"templateHash": "4662751976093611386"
}
},
"parameters": {
"resourcePrefix": {
"type": "string",
"minLength": 1,
"maxLength": 6,
"metadata": {
"description": "A prefix, 1-6 alphanumeric characters without whitespace, used to prefix resources and generate uniqueness for resources with globally unique naming requirements like Storage Accounts and Log Analytics Workspaces"
}
},
"environmentAbbreviation": {
"type": "string",
"defaultValue": "dev",
"allowedValues": [
"dev",
"prod",
"test"
],
"metadata": {
"description": "The abbreviation for the environment."
}
},
"hubSubscriptionId": {
"type": "string",
"defaultValue": "[subscription().subscriptionId]",
"metadata": {
"description": "The subscription ID for the Hub Network and resources. It defaults to the deployment subscription."
}
},
"identitySubscriptionId": {
"type": "string",
"defaultValue": "[subscription().subscriptionId]",
"metadata": {
"description": "The subscription ID for the Identity Network and resources. It defaults to the deployment subscription."
}
},
"operationsSubscriptionId": {
"type": "string",
"defaultValue": "[subscription().subscriptionId]",
"metadata": {
"description": "The subscription ID for the Operations Network and resources. It defaults to the deployment subscription."
}
},
"sharedServicesSubscriptionId": {
"type": "string",
"defaultValue": "[subscription().subscriptionId]",
"metadata": {
"description": "The subscription ID for the Shared Services Network and resources. It defaults to the deployment subscription."
}
},
"location": {
"type": "string",
"defaultValue": "[deployment().location]",
"metadata": {
"description": "The region to deploy resources into. It defaults to the deployment location."
}
},
"supportedClouds": {
"type": "array",
"defaultValue": [
"AzureCloud",
"AzureUSGovernment"
],
"metadata": {
"description": "Supported Azure Clouds array. It defaults to the Public cloud and the Azure US Government cloud."
}
},
"deployIdentity": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "Choose to deploy the identity resources. The identity resoures are not required if you plan to use cloud identities."
}
},
"deployNetworkWatcher": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "Choose whether to deploy network watcher for the desired deployment location. Only one network watcher per location can exist in a subscription."
}
},
"deploymentNameSuffix": {
"type": "string",
"defaultValue": "[utcNow()]",
"metadata": {
"description": "A suffix to use for naming deployments uniquely. It defaults to the Bicep resolution of the \"utcNow()\" function."
}
},
"tags": {
"type": "object",
"defaultValue": {},
"metadata": {
"description": "A string dictionary of tags to add to deployed resources. See https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/tag-resources?tabs=json#arm-templates for valid settings."
}
},
"hubVirtualNetworkAddressPrefix": {
"type": "string",
"defaultValue": "10.0.128.0/23",
"metadata": {
"description": "The CIDR Virtual Network Address Prefix for the Hub Virtual Network."
}
},
"hubSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.128.128/26",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the default Hub subnet. It must be in the Hub Virtual Network space."
}
},
"firewallClientSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.128.0/26",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the Azure Firewall Subnet. It must be in the Hub Virtual Network space. It must be /26."
}
},
"firewallManagementSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.128.64/26",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the Azure Firewall Management Subnet. It must be in the Hub Virtual Network space. It must be /26."
}
},
"identityVirtualNetworkAddressPrefix": {
"type": "string",
"defaultValue": "10.0.130.0/24",
"metadata": {
"description": "The CIDR Virtual Network Address Prefix for the Identity Virtual Network."
}
},
"identitySubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.130.0/24",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the default Identity subnet. It must be in the Identity Virtual Network space."
}
},
"operationsVirtualNetworkAddressPrefix": {
"type": "string",
"defaultValue": "10.0.131.0/24",
"metadata": {
"description": "The CIDR Virtual Network Address Prefix for the Operations Virtual Network."
}
},
"operationsSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.131.0/24",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the default Operations subnet. It must be in the Operations Virtual Network space."
}
},
"sharedServicesVirtualNetworkAddressPrefix": {
"type": "string",
"defaultValue": "10.0.132.0/24",
"metadata": {
"description": "The CIDR Virtual Network Address Prefix for the Shared Services Virtual Network."
}
},
"sharedServicesSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.132.0/24",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the default Shared Services subnet. It must be in the Shared Services Virtual Network space."
}
},
"firewallSkuTier": {
"type": "string",
"defaultValue": "Premium",
"allowedValues": [
"Standard",
"Premium",
"Basic"
],
"metadata": {
"description": "[Standard/Premium/Basic] The SKU for Azure Firewall. It defaults to \"Premium\". Selecting a value other than Premium is not recommended for environments that are required to be SCCA compliant."
}
},
"firewallThreatIntelMode": {
"type": "string",
"defaultValue": "Alert",
"allowedValues": [
"Alert",
"Deny",
"Off"
],
"metadata": {
"description": "[Alert/Deny/Off] The Azure Firewall Threat Intelligence Rule triggered logging behavior. Valid values are \"Alert\", \"Deny\", or \"Off\". The default value is \"Alert\"."
}
},
"firewallIntrusionDetectionMode": {
"type": "string",
"defaultValue": "Alert",
"allowedValues": [
"Alert",
"Deny",
"Off"
],
"metadata": {
"description": "[Alert/Deny/Off] The Azure Firewall Intrusion Detection mode. Valid values are \"Alert\", \"Deny\", or \"Off\". The default value is \"Alert\"."
}
},
"enableProxy": {
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "[true/false] The Azure Firewall DNS Proxy will forward all DNS traffic. When this value is set to true, you must provide a value for \"dnsServers\""
}
},
"dnsServers": {
"type": "array",
"defaultValue": [
"168.63.129.16"
],
"metadata": {
"description": "['168.63.129.16'] The Azure Firewall DNS Proxy will forward all DNS traffic. When this value is set to true, you must provide a value for \"servers\". This should be a comma separated list of IP addresses to forward DNS traffic"
}
},
"firewallDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "AzureFirewallApplicationRule",
"enabled": true
},
{
"category": "AzureFirewallNetworkRule",
"enabled": true
},
{
"category": "AzureFirewallDnsProxy",
"enabled": "[parameters('enableProxy')]"
}
],
"metadata": {
"description": "An array of Firewall Diagnostic Logs categories to collect. See \"https://docs.microsoft.com/en-us/azure/firewall/firewall-diagnostics#enable-diagnostic-logging-through-the-azure-portal\" for valid values."
}
},
"firewallDiagnosticsMetrics": {
"type": "array",
"defaultValue": [
{
"category": "AllMetrics",
"enabled": true
}
],
"metadata": {
"description": "An array of Firewall Diagnostic Metrics categories to collect. See \"https://docs.microsoft.com/en-us/azure/firewall/firewall-diagnostics#enable-diagnostic-logging-through-the-azure-portal\" for valid values."
}
},
"firewallClientPublicIPAddressAvailabilityZones": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Azure Firewall Public IP Address Availability Zones. It defaults to empty, or \"No-Zone\", because Availability Zones are not available in every cloud. See https://docs.microsoft.com/en-us/azure/virtual-network/ip-services/public-ip-addresses#sku for valid settings."
}
},
"firewallManagementPublicIPAddressAvailabilityZones": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Azure Firewall Public IP Address Availability Zones. It defaults to empty, or \"No-Zone\", because Availability Zones are not available in every cloud. See https://docs.microsoft.com/en-us/azure/virtual-network/ip-services/public-ip-addresses#sku for valid settings."
}
},
"firewallSupernetIPAddress": {
"type": "string",
"defaultValue": "10.0.128.0/18",
"metadata": {
"description": "Supernet CIDR address for the entire network of vnets, this address allows for communication between spokes. Recommended to use a Supernet calculator if modifying vnet addresses"
}
},
"publicIPAddressDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "DDoSProtectionNotifications",
"enabled": true
},
{
"category": "DDoSMitigationFlowLogs",
"enabled": true
},
{
"category": "DDoSMitigationReports",
"enabled": true
}
],
"metadata": {
"description": "An array of Public IP Address Diagnostic Logs for the Azure Firewall. See https://docs.microsoft.com/en-us/azure/ddos-protection/diagnostic-logging?tabs=DDoSProtectionNotifications#configure-ddos-diagnostic-logs for valid settings."
}
},
"publicIPAddressDiagnosticsMetrics": {
"type": "array",
"defaultValue": [
{
"category": "AllMetrics",
"enabled": true
}
],
"metadata": {
"description": "An array of Public IP Address Diagnostic Metrics for the Azure Firewall. See https://docs.microsoft.com/en-us/azure/ddos-protection/diagnostic-logging?tabs=DDoSProtectionNotifications for valid settings."
}
},
"hubVirtualNetworkDiagnosticsLogs": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Logs to enable for the Hub Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#logs for valid settings."
}
},
"hubVirtualNetworkDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Metrics to enable for the Hub Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"hubNetworkSecurityGroupRules": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Rules to apply to the Hub Virtual Network. See https://docs.microsoft.com/en-us/azure/templates/microsoft.network/networksecuritygroups/securityrules?tabs=bicep#securityrulepropertiesformat for valid settings."
}
},
"hubNetworkSecurityGroupDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "NetworkSecurityGroupEvent",
"enabled": true
},
{
"category": "NetworkSecurityGroupRuleCounter",
"enabled": true
}
],
"metadata": {
"description": "An array of Network Security Group diagnostic logs to apply to the Hub Virtual Network. See https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-nsg-manage-log#log-categories for valid settings."
}
},
"hubNetworkSecurityGroupDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Metrics to apply to enable for the Hub Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"identityVirtualNetworkDiagnosticsLogs": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Logs to enable for the Identity Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#logs for valid settings."
}
},
"identityVirtualNetworkDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Metrics to enable for the Identity Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"identityNetworkSecurityGroupRules": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Rules to apply to the Identity Virtual Network. See https://docs.microsoft.com/en-us/azure/templates/microsoft.network/networksecuritygroups/securityrules?tabs=bicep#securityrulepropertiesformat for valid settings."
}
},
"identityNetworkSecurityGroupDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "NetworkSecurityGroupEvent",
"enabled": true
},
{
"category": "NetworkSecurityGroupRuleCounter",
"enabled": true
}
],
"metadata": {
"description": "An array of Network Security Group diagnostic logs to apply to the Identity Virtual Network. See https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-nsg-manage-log#log-categories for valid settings."
}
},
"identityNetworkSecurityGroupDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Metrics to apply to enable for the Identity Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"keyVaultDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "AuditEvent",
"enabled": true
},
{
"category": "AzurePolicyEvaluationDetails",
"enabled": true
}
],
"metadata": {
"description": "An array of Key Vault Diagnostic Logs categories to collect. See \"https://learn.microsoft.com/en-us/azure/key-vault/general/logging?tabs=Vault\" for valid values."
}
},
"operationsVirtualNetworkDiagnosticsLogs": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Logs to enable for the Operations Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#logs for valid settings."
}
},
"operationsVirtualNetworkDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Metrics to enable for the Operations Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"operationsNetworkSecurityGroupRules": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group rules to apply to the Operations Virtual Network. See https://docs.microsoft.com/en-us/azure/templates/microsoft.network/networksecuritygroups/securityrules?tabs=bicep#securityrulepropertiesformat for valid settings."
}
},
"operationsNetworkSecurityGroupDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "NetworkSecurityGroupEvent",
"enabled": true
},
{
"category": "NetworkSecurityGroupRuleCounter",
"enabled": true
}
],
"metadata": {
"description": "An array of Network Security Group diagnostic logs to apply to the Operations Virtual Network. See https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-nsg-manage-log#log-categories for valid settings."
}
},
"operationsNetworkSecurityGroupDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Diagnostic Metrics to enable for the Operations Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"sharedServicesVirtualNetworkDiagnosticsLogs": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Logs to enable for the SharedServices Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#logs for valid settings."
}
},
"sharedServicesVirtualNetworkDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Diagnostic Metrics to enable for the SharedServices Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"sharedServicesNetworkSecurityGroupRules": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group rules to apply to the SharedServices Virtual Network. See https://docs.microsoft.com/en-us/azure/templates/microsoft.network/networksecuritygroups/securityrules?tabs=bicep#securityrulepropertiesformat for valid settings."
}
},
"sharedServicesNetworkSecurityGroupDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "NetworkSecurityGroupEvent",
"enabled": true
},
{
"category": "NetworkSecurityGroupRuleCounter",
"enabled": true
}
],
"metadata": {
"description": "An array of Network Security Group diagnostic logs to apply to the SharedServices Virtual Network. See https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-nsg-manage-log#log-categories for valid settings."
}
},
"sharedServicesNetworkSecurityGroupDiagnosticsMetrics": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "An array of Network Security Group Diagnostic Metrics to enable for the SharedServices Virtual Network. See https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=CMD#metrics for valid settings."
}
},
"deploySentinel": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", enables Microsoft Sentinel within the Log Analytics Workspace created in this deployment. It defaults to \"false\"."
}
},
"logAnalyticsWorkspaceCappingDailyQuotaGb": {
"type": "int",
"defaultValue": -1,
"metadata": {
"description": "The daily quota for Log Analytics Workspace logs in Gigabytes. It defaults to \"-1\" for no quota."
}
},
"logAnalyticsWorkspaceNoSentinelRetentionInDays": {
"type": "int",
"defaultValue": 30,
"metadata": {
"description": "The number of days to retain Log Analytics Workspace logs without Sentinel. It defaults to \"30\"."
}
},
"logAnalyticsSentinelWorkspaceRetentionInDays": {
"type": "int",
"defaultValue": 90,
"metadata": {
"description": "The number of days to retain logs in Sentinel-linked Workspace. It defaults to \"90\"."
}
},
"logAnalyticsWorkspaceSkuName": {
"type": "string",
"defaultValue": "PerGB2018",
"allowedValues": [
"Free",
"Standard",
"Premium",
"PerNode",
"PerGB2018",
"Standalone"
],
"metadata": {
"description": "[Free/Standard/Premium/PerNode/PerGB2018/Standalone] The SKU for the Log Analytics Workspace. It defaults to \"PerGB2018\". See https://docs.microsoft.com/en-us/azure/azure-monitor/logs/resource-manager-workspace for valid settings."
}
},
"logStorageSkuName": {
"type": "string",
"defaultValue": "Standard_GRS",
"metadata": {
"description": "The Storage Account SKU to use for log storage. It defaults to \"Standard_GRS\". See https://docs.microsoft.com/en-us/rest/api/storagerp/srp_sku_types for valid settings."
}
},
"bastionDiagnosticsLogs": {
"type": "array",
"defaultValue": [
{
"category": "BastionAuditLogs",
"enabled": true
}
]
},
"deployBastion": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", provisions Azure Bastion Host only. It defaults to \"false\"."
}
},
"deployAzureGatewaySubnet": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", provisions Azure Gateway Subnet only. It defaults to \"false\"."
}
},
"deployWindowsVirtualMachine": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", provisions Windows Virtual Machine Host only. It defaults to \"false\"."
}
},
"deployLinuxVirtualMachine": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", provisions Linux Virtual Machine Host only. It defaults to \"false\"."
}
},
"bastionHostSubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.128.192/26",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the Azure Bastion Subnet. It must be in the Hub Virtual Network space \"hubVirtualNetworkAddressPrefix\" parameter value. It must be /27 or larger."
}
},
"azureGatewaySubnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.129.192/26",
"metadata": {
"description": "The CIDR Subnet Address Prefix for the Azure Gateway Subnet. It must be in the Hub Virtual Network space. It must be /26."
}
},
"bastionHostPublicIPAddressAvailabilityZones": {
"type": "array",
"defaultValue": [],
"metadata": {
"description": "The Azure Bastion Public IP Address Availability Zones. It defaults to \"No-Zone\" because Availability Zones are not available in every cloud. See https://docs.microsoft.com/en-us/azure/virtual-network/ip-services/public-ip-addresses#sku for valid settings."
}
},
"hybridUseBenefit": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "The hybrid use benefit provides a discount on virtual machines when a customer has an on-premises Windows Server license with Software Assurance."
}
},
"linuxVmAdminUsername": {
"type": "string",
"defaultValue": "azureuser",
"metadata": {
"description": "The administrator username for the Linux Virtual Machine to Azure Bastion remote into. It defaults to \"azureuser\"."
}
},
"linuxVmAuthenticationType": {
"type": "string",
"defaultValue": "password",
"allowedValues": [
"sshPublicKey",
"password"
],
"metadata": {
"description": "[sshPublicKey/password] The authentication type for the Linux Virtual Machine to Azure Bastion remote into. It defaults to \"password\"."
}
},
"linuxVmAdminPasswordOrKey": {
"type": "securestring",
"defaultValue": "[if(parameters('deployLinuxVirtualMachine'), '', newGuid())]",
"minLength": 12,
"metadata": {
"description": "The administrator password or public SSH key for the Linux Virtual Machine to Azure Bastion remote into. See https://docs.microsoft.com/en-us/azure/virtual-machines/linux/faq#what-are-the-password-requirements-when-creating-a-vm- for password requirements."
}
},
"linuxVmOsDiskCreateOption": {
"type": "string",
"defaultValue": "FromImage",
"metadata": {
"description": "The disk creation option of the Linux Virtual Machine to Azure Bastion remote into. It defaults to \"FromImage\"."
}
},
"linuxVmOsDiskType": {
"type": "string",
"defaultValue": "Standard_LRS",
"metadata": {
"description": "The disk type of the Linux Virtual Machine to Azure Bastion remote into. It defaults to \"Standard_LRS\"."
}
},
"linuxVmImagePublisher": {
"type": "string",
"defaultValue": "Canonical",
"allowedValues": [
"Canonical",
"RedHat",
"Debian"
],
"metadata": {
"description": "[Canonical for Ubuntu/RedHat/Debian] The available Linux Publishers"
}
},
"linuxVmImageOffer": {
"type": "string",
"defaultValue": "0001-com-ubuntu-server-focal",
"allowedValues": [
"ubuntuserver",
"0001-com-ubuntu-server-focal",
"0001-com-ubuntu-server-jammy",
"RHEL",
"Debian-12"
],
"metadata": {
"description": "[Ubuntu/RHEL/Debian-12] The available Linux Offers"
}
},
"linuxVmImageSku": {
"type": "string",
"defaultValue": "20_04-lts-gen2",
"metadata": {
"description": "The SKU of the Linux marketplace image."
}
},
"linuxVmSize": {
"type": "string",
"defaultValue": "Standard_D2s_v3",
"metadata": {
"description": "The size of the Linux virtual machine."
}
},
"linuxNetworkInterfacePrivateIPAddressAllocationMethod": {
"type": "string",
"defaultValue": "Dynamic",
"allowedValues": [
"Static",
"Dynamic"
],
"metadata": {
"description": "[Static/Dynamic] The public IP Address allocation method for the Linux virtual machine. It defaults to \"Dynamic\"."
}
},
"windowsVmAdminUsername": {
"type": "string",
"defaultValue": "azureuser",
"metadata": {
"description": "The administrator username for the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"azureuser\"."
}
},
"windowsVmAdminPassword": {
"type": "securestring",
"defaultValue": "[if(parameters('deployWindowsVirtualMachine'), '', newGuid())]",
"minLength": 12,
"metadata": {
"description": "The administrator password the Windows Virtual Machine to Azure Bastion remote into. It must be > 12 characters in length. See https://docs.microsoft.com/en-us/azure/virtual-machines/windows/faq#what-are-the-password-requirements-when-creating-a-vm- for password requirements."
}
},
"windowsVmSize": {
"type": "string",
"defaultValue": "Standard_DS1_v2",
"metadata": {
"description": "The size of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"Standard_DS1_v2\"."
}
},
"windowsVmPublisher": {
"type": "string",
"defaultValue": "MicrosoftWindowsServer",
"metadata": {
"description": "The publisher of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"MicrosoftWindowsServer\"."
}
},
"windowsVmOffer": {
"type": "string",
"defaultValue": "WindowsServer",
"metadata": {
"description": "The offer of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"WindowsServer\"."
}
},
"windowsVmSku": {
"type": "string",
"defaultValue": "2019-datacenter-gensecond",
"allowedValues": [
"2019-datacenter-gensecond",
"2022-datacenter-g2"
],
"metadata": {
"description": "The SKU of the Windows Virtual Machines to Azure Bastion remote into. It defaults to \"2019-datacenter\"."
}
},
"windowsVmVersion": {
"type": "string",
"defaultValue": "latest",
"metadata": {
"description": "The version of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"latest\"."
}
},
"windowsVmCreateOption": {
"type": "string",
"defaultValue": "FromImage",
"metadata": {
"description": "The disk creation option of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"FromImage\"."
}
},
"windowsVmStorageAccountType": {
"type": "string",
"defaultValue": "StandardSSD_LRS",
"metadata": {
"description": "The storage account type of the Windows Virtual Machine to Azure Bastion remote into. It defaults to \"StandardSSD_LRS\"."
}
},
"windowsNetworkInterfacePrivateIPAddressAllocationMethod": {
"type": "string",
"defaultValue": "Dynamic",
"allowedValues": [
"Static",
"Dynamic"
],
"metadata": {
"description": "[Static/Dynamic] The public IP Address allocation method for the Windows virtual machine. It defaults to \"Dynamic\"."
}
},
"deployPolicy": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "When set to \"true\", deploys the Azure Policy set defined at by the parameter \"policy\" to the resource groups generated in the deployment. It defaults to \"false\"."
}
},
"policy": {
"type": "string",
"defaultValue": "NISTRev4",
"allowedValues": [
"NISTRev4",
"NISTRev5",
"IL5",
"CMMC"
],
"metadata": {
"description": "[NISTRev4/NISTRev5/IL5/CMMC] Built-in policy assignments to assign, it defaults to \"NISTRev4\". IL5 is only available for AzureUsGovernment and will switch to NISTRev4 if tried in AzureCloud."
}
},
"deployDefender": {
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "When set to \"true\", enables Microsoft Defender for Cloud for the subscriptions used in the deployment. It defaults to \"false\"."
}
},
"defenderSkuTier": {
"type": "string",
"defaultValue": "Free",
"allowedValues": [
"Standard",
"Free"
],
"metadata": {
"description": "[Standard/Free] The SKU for Defender. It defaults to \"Free\"."
}
},
"emailSecurityContact": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Email address of the contact, in the form of [email protected]"
}
},
"deployDefenderPlans": {
"type": "array",
"defaultValue": [
"VirtualMachines"
],
"metadata": {
"description": "Paid Workload Protection plans for Defender for Cloud"
}
}
},
"variables": {
"copy": [
{
"name": "firewallClientUsableIpAddresses",
"count": "[length(range(0, 4))]",
"input": "[cidrHost(parameters('firewallClientSubnetAddressPrefix'), range(0, 4)[copyIndex('firewallClientUsableIpAddresses')])]"
}
],
"firewallClientPrivateIpAddress": "[variables('firewallClientUsableIpAddresses')[3]]",
"logAnalyticsWorkspaceRetentionInDays": "[if(parameters('deploySentinel'), parameters('logAnalyticsSentinelWorkspaceRetentionInDays'), parameters('logAnalyticsWorkspaceNoSentinelRetentionInDays'))]",
"networks": "[union(createArray(createObject('name', 'hub', 'shortName', 'hub', 'deployUniqueResources', true(), 'subscriptionId', parameters('hubSubscriptionId'), 'nsgDiagLogs', parameters('hubNetworkSecurityGroupDiagnosticsLogs'), 'nsgDiagMetrics', parameters('hubNetworkSecurityGroupDiagnosticsMetrics'), 'nsgRules', parameters('hubNetworkSecurityGroupRules'), 'vnetAddressPrefix', parameters('hubVirtualNetworkAddressPrefix'), 'vnetDiagLogs', parameters('hubVirtualNetworkDiagnosticsLogs'), 'vnetDiagMetrics', parameters('hubVirtualNetworkDiagnosticsMetrics'), 'subnetAddressPrefix', parameters('hubSubnetAddressPrefix')), createObject('name', 'operations', 'shortName', 'ops', 'deployUniqueResources', if(contains(createArray(parameters('hubSubscriptionId')), parameters('operationsSubscriptionId')), false(), true()), 'subscriptionId', parameters('operationsSubscriptionId'), 'nsgDiagLogs', parameters('operationsNetworkSecurityGroupDiagnosticsLogs'), 'nsgDiagMetrics', parameters('operationsNetworkSecurityGroupDiagnosticsMetrics'), 'nsgRules', parameters('operationsNetworkSecurityGroupRules'), 'vnetAddressPrefix', parameters('operationsVirtualNetworkAddressPrefix'), 'vnetDiagLogs', parameters('operationsVirtualNetworkDiagnosticsLogs'), 'vnetDiagMetrics', parameters('operationsVirtualNetworkDiagnosticsMetrics'), 'subnetAddressPrefix', parameters('operationsSubnetAddressPrefix')), createObject('name', 'sharedServices', 'shortName', 'svcs', 'deployUniqueResources', if(contains(createArray(parameters('hubSubscriptionId'), parameters('operationsSubscriptionId')), parameters('sharedServicesSubscriptionId')), false(), true()), 'subscriptionId', parameters('sharedServicesSubscriptionId'), 'nsgDiagLogs', parameters('sharedServicesNetworkSecurityGroupDiagnosticsLogs'), 'nsgDiagMetrics', parameters('sharedServicesNetworkSecurityGroupDiagnosticsMetrics'), 'nsgRules', parameters('sharedServicesNetworkSecurityGroupRules'), 'vnetAddressPrefix', parameters('sharedServicesVirtualNetworkAddressPrefix'), 'vnetDiagLogs', parameters('sharedServicesVirtualNetworkDiagnosticsLogs'), 'vnetDiagMetrics', parameters('sharedServicesVirtualNetworkDiagnosticsMetrics'), 'subnetAddressPrefix', parameters('sharedServicesSubnetAddressPrefix'))), if(parameters('deployIdentity'), createArray(createObject('name', 'identity', 'shortName', 'id', 'deployUniqueResources', if(contains(createArray(parameters('hubSubscriptionId'), parameters('operationsSubscriptionId'), parameters('sharedServicesSubscriptionId')), parameters('identitySubscriptionId')), false(), true()), 'subscriptionId', parameters('identitySubscriptionId'), 'nsgDiagLogs', parameters('identityNetworkSecurityGroupDiagnosticsLogs'), 'nsgDiagMetrics', parameters('identityNetworkSecurityGroupDiagnosticsMetrics'), 'nsgRules', parameters('identityNetworkSecurityGroupRules'), 'vnetAddressPrefix', parameters('identityVirtualNetworkAddressPrefix'), 'vnetDiagLogs', parameters('identityVirtualNetworkDiagnosticsLogs'), 'vnetDiagMetrics', parameters('identityVirtualNetworkDiagnosticsMetrics'), 'subnetAddressPrefix', parameters('identitySubnetAddressPrefix'))), createArray()))]"
},
"resources": [
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2022-09-01",
"name": "[format('get-logic-{0}', parameters('deploymentNameSuffix'))]",
"location": "[deployment().location]",
"properties": {
"expressionEvaluationOptions": {
"scope": "inner"
},
"mode": "Incremental",
"parameters": {
"deploymentNameSuffix": {
"value": "[parameters('deploymentNameSuffix')]"
},
"environmentAbbreviation": {
"value": "[parameters('environmentAbbreviation')]"
},
"location": {
"value": "[parameters('location')]"
},
"networks": {
"value": "[variables('networks')]"
},
"resourcePrefix": {
"value": "[parameters('resourcePrefix')]"
}
},
"template": {
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.31.92.45157",
"templateHash": "15810721730485220824"
}
},
"parameters": {
"deploymentNameSuffix": {
"type": "string"
},
"environmentAbbreviation": {
"type": "string"
},
"location": {
"type": "string"
},
"networks": {
"type": "array"
},
"resourcePrefix": {
"type": "string"
},
"stampIndex": {
"type": "string",
"defaultValue": ""
}
},
"variables": {
"$fxv#0": "1.0.0",
"environmentName": {
"dev": "Development",
"prod": "Production",
"test": "Test"
},
"mlzTags": {
"environment": "[variables('environmentName')[parameters('environmentAbbreviation')]]",
"landingZoneName": "MissionLandingZone",
"landingZoneVersion": "[variables('$fxv#0')]",
"resourcePrefix": "[parameters('resourcePrefix')]"
}
},
"resources": [
{
"copy": {
"name": "namingConventions",
"count": "[length(parameters('networks'))]"
},
"type": "Microsoft.Resources/deployments",
"apiVersion": "2022-09-01",
"name": "[format('naming-convention-{0}-{1}', parameters('networks')[copyIndex()].shortName, parameters('deploymentNameSuffix'))]",
"location": "[deployment().location]",
"properties": {
"expressionEvaluationOptions": {
"scope": "inner"
},
"mode": "Incremental",
"parameters": {
"environmentAbbreviation": {
"value": "[parameters('environmentAbbreviation')]"
},
"location": {
"value": "[parameters('location')]"
},
"networkName": {
"value": "[parameters('networks')[copyIndex()].name]"
},
"networkShortName": {
"value": "[parameters('networks')[copyIndex()].shortName]"
},
"resourcePrefix": {
"value": "[parameters('resourcePrefix')]"
},
"stampIndex": {
"value": "[parameters('stampIndex')]"
}
},
"template": {
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.31.92.45157",
"templateHash": "11125044402666498605"
}
},
"parameters": {
"environmentAbbreviation": {
"type": "string"
},
"location": {
"type": "string"
},
"networkName": {
"type": "string"
},
"networkShortName": {
"type": "string"
},
"resourcePrefix": {
"type": "string"
},
"stampIndex": {
"type": "string",
"defaultValue": ""
},
"tokens": {
"type": "object",
"defaultValue": {
"purpose": "purpose_token",
"resource": "resource_token",
"service": "service_token"
}