-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathmlz.portal.json
1470 lines (1470 loc) · 85.8 KB
/
mlz.portal.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": "<relative path to createFormUI.schema.json>",
"view": {
"kind": "Form",
"properties": {
"title": "Mission Landing Zone",
"isWizard": true,
"steps": [
{
"name": "basics",
"label": "Basics",
"elements": [
{
"name": "basicsDescriptionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Mission Landing Zone is a prescriptive reference architecture with reference implementation of a SCCA compliant Hub and Spoke virtual network provided by Microsoft.",
"link": {
"label": "https://aka.ms/missionlz",
"uri": "https://aka.ms/missionlz"
}
}
},
{
"name": "armApiControls",
"label": "",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "subscriptionApi",
"type": "Microsoft.Solutions.ArmApiControl",
"request": {
"method": "GET",
"path": "subscriptions?api-version=2020-01-01"
}
},
{
"name": "locationsApi",
"type": "Microsoft.Solutions.ArmApiControl",
"request": {
"method": "GET",
"path": "locations?api-version=2019-11-01"
}
}
]
},
{
"name": "resourceScope",
"type": "Microsoft.Common.ResourceScope",
"location": {
"resourceTypes": []
}
},
{
"name": "selectSubscriptions",
"label": "Select Subscription(s)",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "subscriptionDetailsText",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Mission Landing Zone is configured for deployment into a single subscription or many subscriptions depending on your needs for resource counts, subscription boundaries, or billing."
}
}
]
},
{
"name": "hubSection",
"label": "Hub",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "hubSectionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "All network traffic is directed through the Azure Firewall residing in the Hub Virtual Network and houses the Azure Bastion host for secure remote access into the network."
}
},
{
"name": "hubSubscriptionId",
"label": "Hub Subscription",
"type": "Microsoft.Common.DropDown",
"defaultValue": "",
"toolTip": "Select the Subscription for your Mission Landing Zone Hub network, firewall, and remote access resources.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"constraints": {
"allowedValues": "[map(steps('basics').armApiControls.subscriptionApi.value, (item) => parse(concat('{\"label\":\"', item.displayName, '\",\"value\":\"', item.id, '\",\"description\":\"', 'ID: ', item.subscriptionId, '\"}')))]",
"required": true
}
}
]
},
{
"name": "identitySection",
"label": "Identity",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "identitySectionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "The Identity spoke can be used to house Active Directory and other AuthN and AuthZ solutions."
}
},
{
"name": "deployIdentity",
"type": "Microsoft.Common.CheckBox",
"label": "Deploy identity resources?",
"toolTip": "Check here to create the identity resources.",
"constraints": {
"required": false
}
},
{
"name": "identitySubscriptionId",
"label": "Identity Subscription",
"type": "Microsoft.Common.DropDown",
"visible": "[steps('basics').identitySection.deployIdentity]",
"defaultValue": "",
"toolTip": "Select the Subscription for your Mission Landing Zone Identity network.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"constraints": {
"allowedValues": "[map(steps('basics').armApiControls.subscriptionApi.value, (item) => parse(concat('{\"label\":\"', item.displayName, '\",\"value\":\"', item.id, '\",\"description\":\"', 'ID: ', item.subscriptionId, '\"}')))]",
"required": true
}
}
]
},
{
"name": "operationsSection",
"label": "Operations",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "operationsSectionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "The Operations spoke can be used for operational tasks like logging and administration of workloads."
}
},
{
"name": "operationsSubscriptionId",
"label": "Operations Subscription",
"type": "Microsoft.Common.DropDown",
"defaultValue": "",
"toolTip": "Select the Subscription for your Mission Landing Zone Operations network.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"constraints": {
"allowedValues": "[map(steps('basics').armApiControls.subscriptionApi.value, (item) => parse(concat('{\"label\":\"', item.displayName, '\",\"value\":\"', item.id, '\",\"description\":\"', 'ID: ', item.subscriptionId, '\"}')))]",
"required": true
}
}
]
},
{
"name": "sharedServicesSection",
"label": "Shared Services",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "sharedServicesSectionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "The Shared Services spoke can be used to host services that are used by multiple workloads like source control and container registries."
}
},
{
"name": "sharedServicesSubscriptionId",
"label": "Shared Services Subscription",
"type": "Microsoft.Common.DropDown",
"defaultValue": "",
"toolTip": "Select the Subscription for your Mission Landing Zone Shared Services network.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"constraints": {
"allowedValues": "[map(steps('basics').armApiControls.subscriptionApi.value, (item) => parse(concat('{\"label\":\"', item.displayName, '\",\"value\":\"', item.id, '\",\"description\":\"', 'ID: ', item.subscriptionId, '\"}')))]",
"required": true
}
}
]
},
{
"name": "locationSection",
"label": "Location",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "infoBoxLocation",
"type": "Microsoft.Common.InfoBox",
"options": {
"text": "Since not all service features are available in all regions, Mission Landing Zone is available in a subset of regions.",
"style": "Info"
}
},
{
"name": "location",
"type": "Microsoft.Common.LocationSelector",
"label": "Location",
"toolTip": "Select the deployment location for MLZ.",
"resourceTypes": [
"Microsoft.Compute/virtualMachines"
]
}
]
},
{
"name": "namingSection",
"label": "Mission Landing Zone Name",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "resourcePrefix",
"label": "Resource Naming Prefix",
"type": "Microsoft.Common.TextBox",
"defaultValue": "",
"toolTip": "Specify a prefix (min 1 and max 6 lowercase characters and numbers) to prepend to all resources.",
"constraints": {
"required": true,
"validations": [
{
"regex": "^[a-z0-9]{1,6}$",
"message": "The prefix must contain alphanumeric characters, letters must be lowercase, and the length must be between 1 to 6 characters."
}
]
}
},
{
"name": "environmentAbbreviation",
"label": "Environment Abbreviation",
"type": "Microsoft.Common.DropDown",
"defaultValue": "dev",
"toolTip": "Select an abbreviation for the target environment. This value will be used as a component in the naming convention.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items...",
"multiLine": true,
"constraints": {
"allowedValues": [
{
"label": "dev",
"description": "Development",
"value": "dev"
},
{
"label": "test",
"description": "Test",
"value": "test"
},
{
"label": "prod",
"description": "Production",
"value": "prod"
}
],
"required": true
}
}
]
}
]
},
{
"name": "networking",
"label": "Networking",
"elements": [
{
"name": "networkDescriptionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Mission Landing Zone deploys virtual networks configured for SCCA compliance."
}
},
{
"name": "dodNeedsDescriptionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "SCCA guidance and architectures are specific to DoD customers, but they also help civilian customers comply with Trusted Internet Connections (TIC) guidance and help commercial customers that want to implement a secure DMZ to protect their Azure environments.",
"link": {
"label": "Learn more",
"uri": "https://docs.microsoft.com/en-us/azure/azure-government/compliance/secure-azure-computing-architecture"
}
}
},
{
"name": "infoBoxVirtualNetworkOverlap",
"type": "Microsoft.Common.InfoBox",
"options": {
"text": "Make sure that the address spaces do not overlap with each other for the Hub, Identity, Operations, or Shared Services networks.",
"style": "Info"
}
},
{
"name": "hubVirtualNetwork",
"label": "Hub Virtual Network",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "superNetworkAddressCidrRange",
"label": "Super Network CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.128.0/18",
"toolTip": "Specify an address CIDR range within the range [10,24].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(1[0-9]|2[0-3]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [10,24]."
}
]
}
},
{
"name": "virtualNetworkAddressCidrRange",
"label": "Hub Virtual Network CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.128.0/23",
"toolTip": "Specify an address CIDR range within the range [10,24].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(1[0-9]|2[0-4]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [10,24]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within super network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within super network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within super network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').hubVirtualNetwork.superNetworkAddressCidrRange, '/')), last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')))]",
"message": "CIDR range not within super network CIDR range (subnet mask)."
}
]
}
},
{
"name": "subnetAddressCidrRange",
"label": "Hub Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.128.128/26",
"toolTip": "Specify a CIDR range for the default subnet within the Hub Virtual Network range [24,28].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-8]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,28]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').hubVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').hubVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').hubVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').hubVirtualNetwork.subnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
},
{
"name": "firewallClientSubnetAddressCidrRange",
"label": "Firewall Client Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.128.64/26",
"toolTip": "Specify a CIDR range for the Azure Firewall Client subnet within the Hub Virtual Network range. It must be of size /26 or larger.",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-6]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,26]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallClientSubnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallClientSubnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallClientSubnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').hubVirtualNetwork.firewallClientSubnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
},
{
"name": "firewallManagementSubnetAddressCidrRange",
"label": "Firewall Management Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.128.0/26",
"toolTip": "Specify a CIDR range for the Azure Firewall Management subnet within the Hub Virtual Network range. It must be of size /26 or larger.",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-6]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,26]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallManagementSubnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallManagementSubnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').hubVirtualNetwork.firewallManagementSubnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').hubVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').hubVirtualNetwork.firewallManagementSubnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
},
{
"name": "firewallSkuTier",
"type": "Microsoft.Common.DropDown",
"label": "Firewall SKU",
"placeholder": "",
"defaultValue": [
"Premium"
],
"toolTip": "Selecting a value other than Premium will reduce the security of the MLZ environment and your environment no longer be SCCA compliant. The Premium SKU is recommended for all production environments that require TLS inspection and SCCA.",
"multiselect": false,
"selectAll": false,
"filter": false,
"filterPlaceholder": "Filter items ...",
"multiLine": false,
"defaultDescription": "Firewall SKU",
"constraints": {
"allowedValues": [
{
"label": "Premium",
"description": "Azure Firewall Premium is recommended to secure highly sensitive applications (such as payment processing). It supports advanced threat protection capabilities like malware and TLS inspection.",
"value": "Premium"
},
{
"label": "Standard",
"description": "Azure Firewall Standard is recommended for customers looking for Layer 3 through Layer 7 firewall and needs autoscaling to handle peak traffic periods of up to 30 Gbps. It supports enterprise features like threat intelligence, DNS proxy, custom DNS, and web categories.",
"value": "Standard"
},
{
"label": "Basic",
"description": "Azure Firewall Basic is recommended for SMB customers with throughput needs of 250 Mbps.",
"value": "Basic"
}
],
"required": true
},
"visible": true
},
{
"name": "firewallSkuDescription",
"type": "Microsoft.Common.InfoBox",
"options": {
"style": "Warning",
"text": "Please validate the SKU availability in your region before deploying as there can be differences between clouds."
}
}
]
},
{
"name": "identityVirtualNetwork",
"label": "Identity Virtual Network",
"type": "Microsoft.Common.Section",
"visible": "[steps('basics').identitySection.deployIdentity]",
"elements": [
{
"name": "virtualNetworkAddressCidrRange",
"label": "Identity Virtual Network CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.130.0/24",
"toolTip": "Specify an address CIDR range within the range [10,24].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(1[0-9]|2[0-4]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [10,24]."
}
]
}
},
{
"name": "subnetAddressCidrRange",
"label": "Identity Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.130.0/24",
"toolTip": "Specify a CIDR range for the default subnet within the Identity Virtual Network range [24,28].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-8]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,28]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').identityVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').identityVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').identityVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').identityVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').identityVirtualNetwork.subnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
}
]
},
{
"name": "operationsVirtualNetwork",
"label": "Operations Virtual Network",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "virtualNetworkAddressCidrRange",
"label": "Operations Virtual Network CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.131.0/24",
"toolTip": "Specify an address CIDR range within the range [10,24].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(1[0-9]|2[0-4]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [10,24]."
}
]
}
},
{
"name": "subnetAddressCidrRange",
"label": "Operations Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.131.0/24",
"toolTip": "Specify a CIDR range for the default subnet within the Operations Virtual Network range [24,28].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-8]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,28]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').operationsVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').operationsVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').operationsVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').operationsVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').operationsVirtualNetwork.subnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
}
]
},
{
"name": "sharedServicesVirtualNetwork",
"label": "Shared Services Virtual Network",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "virtualNetworkAddressCidrRange",
"label": "Shared Services Virtual Network CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.132.0/24",
"toolTip": "Specify an address CIDR range within the range [10,24].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(1[0-9]|2[0-4]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [10,24]."
}
]
}
},
{
"name": "subnetAddressCidrRange",
"label": "Shared Services Subnet CIDR Range",
"type": "Microsoft.Common.TextBox",
"defaultValue": "10.0.132.0/24",
"toolTip": "Specify a CIDR range for the default subnet within the Shared Services Virtual Network range [24,28].",
"constraints": {
"required": true,
"validations": [
{
"regex": "^(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(?:\/(2[4-8]))$",
"message": "Invalid CIDR range. The address prefix must be in the range [24,28]."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 8), equals(last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 1)), last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 1))), true)]",
"message": "CIDR range not within virtual network CIDR range (first octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 16), equals(last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 2)), last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 2))), true)]",
"message": "CIDR range not within virtual network CIDR range (second octet)."
},
{
"isValid": "[if(greaterOrEquals(last(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), 24), equals(last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), '.'), 3)), last(take(split(first(split(steps('networking').sharedServicesVirtualNetwork.subnetAddressCidrRange, '/')), '.'), 3))), true)]",
"message": "CIDR range not within virtual network CIDR range (third octet)."
},
{
"isValid": "[lessOrEquals(last(split(steps('networking').sharedServicesVirtualNetwork.virtualNetworkAddressCidrRange, '/')), last(split(steps('networking').sharedServicesVirtualNetwork.subnetAddressCidrRange, '/')))]",
"message": "CIDR range not within virtual network CIDR range (subnet mask)."
}
]
}
}
]
},
{
"name": "networkWatchersApi",
"type": "Microsoft.Solutions.ArmApiControl",
"request": {
"method": "GET",
"path": "[concat(steps('basics').hubSection.hubSubscriptionId, '/providers/Microsoft.Network/networkWatchers?api-version=2023-09-01')]"
}
}
]
},
{
"name": "compliance",
"label": "Security and Compliance",
"elements": [
{
"name": "Security and Compliance",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "To support the on-going security and compliance of your landing zone, MLZ provides options for configuring: Defender for Cloud, Regulatory Compliance Policies, and Microsoft Sentinel.",
"link": {
"label": "Click here to learn more about recommended security best practices",
"uri": "https://learn.microsoft.com/en-us/azure/security/fundamentals/operational-best-practices"
}
}
},
{
"name": "defenderFreeSection",
"label": "Defender for Cloud - Cloud Security Posture Management",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "CSPMTextBox",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "To support the on-going security and compliance of your landing zone, by default - MLZ deploys the free cloud security posture management features of Defender for Cloud, such as: secure score, which is powered by the Microsoft Cloud Security Benchmark. The Microsoft Cloud Security Benchmark is a security framework derived from Microsoft best practices, and NIST/CIS security Controls.",
"link": {
"label": "Click here to learn more about Defender for Cloud",
"uri": "https://docs.microsoft.com/en-us/azure/defender-for-cloud/defender-for-cloud-introduction"
}
}
}
]
},
{
"name": "defenderSection",
"label": "Defender for Cloud - Workload Protection Plans and other advanced management features",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "defenderSubscriptionDetailsText",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "For further enhanced protection, MLZ has the option of activiating the paid features of Defender for Cloud, such as: Defender Cloud Security Posture Management (DCSPM) and workload protection plans for additional threat protection for resources, such as: servers, storage, and more."
}
},
{
"name": "defenderSKUWarningText",
"type": "Microsoft.Common.InfoBox",
"visible": true,
"options": {
"text": "Enabling the additional paid features of Microsoft Defender for Cloud is recommended. If you have previously enabled any paid workload protection plans, you must select the checkbox and relevant plans on the dropdown list, to ensure protection is maintained through any deployment(s) of MLZ.",
"uri": "https://learn.microsoft.com/en-us/azure/defender-for-cloud/defender-for-cloud-introduction#protect-cloud-workloads"
}
},
{
"name": "deployDefender",
"type": "Microsoft.Common.CheckBox",
"label": "Enable additional features for Microsoft Defender for Cloud?",
"toolTip": "Check here to enable additional paid features of Microsoft Defender for Cloud.",
"constraints": {
"required": false
}
},
{
"name": "Checkavailability",
"type": "Microsoft.Common.InfoBox",
"options": {
"icon": "Info",
"text": "Click the link to open a new browser tab, to confirm what workload protection features are available in the in Azure Commercial and Azure Government Clouds.",
"uri": "https://learn.microsoft.com/en-us/azure/security/fundamentals/feature-availability#microsoft-defender-for-cloud"
},
"visible": "[steps('compliance').defenderSection.deployDefender]"
},
{
"name": "deployDefenderPlans",
"type": "Microsoft.Common.DropDown",
"label": "Defender for Cloud Additional Features",
"placeholder": "",
"defaultValue": "VirtualMachines",
"toolTip": "Check feature availability of paid Defender for Cloud features",
"multiselect": true,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"defaultDescription": "Select paid Defender for Cloud features.",
"constraints": {
"allowedValues": [
{
"label": "Defender CSPM",
"description": "Provides enhanced posture management tools, such as: attack paths, cloud security explorer, and governance",
"value": "CloudPosture"
},
{
"label": "Defender for Servers",
"description": "Provide server protections through Microsoft Defender for Endpoint or extended protection with just-in-time network access, file integrity monitoring, vulnerability assessment, and more.",
"value": "VirtualMachines"
},
{
"label": "Defender for API",
"description": "Safeguards APIs throughout their lifecycle, offering detection, response coverage, and vulnerability prioritization",
"value": "Api"
},
{
"label": "Defender for App Services",
"description": "Diagnose weaknesses in your application infrastructure that can leave your environment susceptible to attack.",
"value": "AppServices"
},
{
"label": "Defender for Resource Manager",
"description": "Protects against suspicious Azure Resource Mnagement operations, use of exploitation toolkits, and lateral movement.",
"value": "Arm"
},
{
"label": "Defender for Azure Cosmos DB",
"description": "detects potential SQL injections, known bad actors based on Microsoft Threat Intelligence, suspicious access patterns, and potential exploitation of your database through compromised identities, or malicious insiders.",
"value": "CosmosDbs"
},
{
"label": "Defender for Key Vault",
"description": "Detects unusual and potentially harmful attempts to access or exploit Key Vault accounts. This layer of protection helps you address threats even if you're not a security expert, and without the need to manage third-party security monitoring systems.",
"value": "KeyVaults"
},
{
"label": "Defender for open-source relational databases",
"description": "Provide alerts when it detects anomalous database access and query patterns as well as suspicious database activities",
"value": "OpenSourceRelationalDatabases"
},
{
"label": "Defender for SQL Server on machines",
"description": "Identify and mitigate potential database vulnerabilities and detecting anomalous activities that could indicate threats to your databases.",
"value": "SqlServerVirtualMachines"
},
{
"label": "Defender for Azure SQL",
"description": "Provides vulnerability assessment and threat protection for Azure SQL.",
"value": "SqlServers"
},
{
"label": "Defender for Storage",
"description": "Detect unusual and potentially harmful attempts to access or exploit your storage accounts using: advanced threat detection capabilities and Microsoft Threat Intelligence data to provide contextual security alerts.",
"value": "StorageAccounts"
},
{
"label": "Defender for Containers",
"description": "Provides security posture management, vulnerability assessment, run-time threat protection, and deployment-montioring for containers.",
"value": "Containers"
}
]
},
"visible": "[steps('compliance').defenderSection.deployDefender]"
},
{
"name": "emailSecurityContact",
"type": "Microsoft.Common.TextBox",
"label": "Security Contact E-Mail Address",
"defaultValue": "",
"toolTip": "Provide an e-mail address as a security contact for Microsoft Defender for Cloud",
"placeholder": "[email protected]",
"multiLine": false,
"constraints": {
"required": "[steps('compliance').defenderSection.deployDefender]",
"validations": [
{
"regex": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$",
"message": "Provide a valid e-mail address"
}
]
},
"visible": "[steps('compliance').defenderSection.deployDefender]"
}
]
},
{
"name": "policySection",
"label": "Assign Regulatory Compliance Policies",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "policySubsetDetailsTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "To assist with security compliance, MLZ can deploy additional regulatory compliance frameworks, powered by Azure Policy, to your landing zone."
}
},
{
"name": "policyOptionalTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Enabling policies is optional, but recommended if your organization must follow certain standards."
}
},
{
"name": "deployPolicy",
"type": "Microsoft.Common.CheckBox",
"label": "Create policy assignments?",
"toolTip": "Check here to assign regulatory compliance policy assignments for the Mission Landing Zone.",
"constraints": {
"required": false
}
},
{
"name": "policy",
"type": "Microsoft.Common.DropDown",
"label": "Policy Assignment",
"placeholder": "",
"defaultValue": "NIST SP 800-53",
"toolTip": "DoD IL5 is only available in AzureUsGovernment and will switch to NISTRev4 if tried in AzureCloud.",
"multiselect": false,
"selectAll": false,
"filter": true,
"filterPlaceholder": "Filter items ...",
"multiLine": true,
"defaultDescription": "Select one of the bundled built-in policy assignments.",
"constraints": {
"allowedValues": [
{
"label": "NIST SP 800-53 Rev4",
"description": "The US National Institute of Standards and Technology (NIST) publishes a catalog of security and privacy controls, Special Publication (SP) 800-53, for all federal information systems in the United States (except those related to national security).",
"value": "NISTRev4"
},
{
"label": "NIST SP 800-53 Rev5",
"description": "The US National Institute of Standards and Technology (NIST) publishes a catalog of security and privacy controls, Special Publication (SP) 800-53, for all federal information systems in the United States (except those related to national security).",
"value": "NISTRev5"
},
{
"label": "DoD IL5",
"description": "The Defense Information Systems Agency (DISA) is an agency of the US Department of Defense (DoD) that is responsible for developing and maintaining the DoD Cloud Computing Security Requirements Guide (SRG). These policies are only available for AzureUsGovernment and will switch to NISTRev4 if tried in AzureCloud.",
"value": "IL5"
},
{
"label": "CMMC",
"description": "The Cybersecurity Maturity Model Certification (CMMC) is a new framework developed by the US Department of Defense (DoD) that requires formal third-party audits of defense industrial base (DIB) contractor cybersecurity practices.",
"value": "CMMC"
}
]
},
"visible": "[steps('compliance').policySection.deployPolicy]"
},
{
"name": "policyWarning",
"type": "Microsoft.Common.InfoBox",
"options": {
"style": "Warning",
"text": "Please validate the desired policy initiative exists in the target cloud before deployment, as there can be differences between clouds."
}
}
]
},
{
"name": "sentinelSection",
"label": "Enable Microsoft Sentinel",
"type": "Microsoft.Common.Section",
"elements": [
{
"name": "sentinelSectionDetailsText",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "MLZ can deploy Microsoft Sentinel to the Log Analytics Workspace, for its Security information and event management (SIEM) and Security orchestration, automation, and response (SOAR).",
"link": {
"label": "Learn more about Microsoft Sentinel",
"uri": "https://learn.microsoft.com/en-us/azure/sentinel/overview"
}
}
},
{
"name": "sentinelOptionalDetailsText",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Please note further configuration of Sentinel is required to take advantage of threat detection, log retention and response capabilities. Please check the following article to determine what regions support Sentinel.",
"link": {
"label": "Learn more about Sentinel regions",
"uri": "https://learn.microsoft.com/en-us/azure/sentinel/geographical-availability-data-residency"
}
}
},
{
"name": "sentinelFeatureAvailability",
"type": "Microsoft.Common.InfoBox",
"options": {
"style": "Info",
"text": "Please check the following article to see what features are available for Sentinel in different Azure environments.",
"uri": "https://learn.microsoft.com/en-us/azure/sentinel/feature-availability"
}
},
{
"name": "deploySentinel",
"type": "Microsoft.Common.CheckBox",
"label": "Enable Microsoft Sentinel?",
"toolTip": "Check here to enable Microsoft Sentinel for your landing zone.",
"constraints": {
"required": false
}
}
]
}
]
},
{
"name": "remoteAccess",
"label": "Remote Access",
"elements": [
{
"name": "remoteAccessDescriptionTextBlock",
"type": "Microsoft.Common.TextBlock",
"options": {
"text": "Mission Landing Zone can provision a Windows and a Linux virtual machine to securely access the network remotely using Azure Bastion hosts.",
"link": {
"label": "Learn more",
"uri": "https://docs.microsoft.com/en-us/azure/bastion/bastion-overview"
}
}
},
{
"name": "remoteAccessSection",
"label": "Enable Remote Access",
"type": "Microsoft.Common.Section",
"elements": [
{