-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy.json
1587 lines (1485 loc) · 71.1 KB
/
azuredeploy.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/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"Customer_ShortName": {
"type": "string",
"defaultValue": "XXX",
"minLength": 3,
"maxLength": 3,
"metadata": {
"description": "Naming Scheme Parameter: Customer Name means the short name of the customer, such as 'EBC' for eBECS"
}
},
"Environment_ShortName": {
"type": "string",
"defaultValue": "ZZZ",
"minLength": 3,
"maxLength": 3,
"metadata": {
"description": "Naming Scheme Parameter: Environment means the type of environment you are trying to deploy, 'DEV' means development, 'PRD' means production"
}
},
"Location_ShortName": {
"type": "string",
"defaultValue": "WEU",
"allowedValues": [
"UKS",
"UKN",
"WEU",
"NEU",
"EUS",
"WUS",
"NUS",
"SUS",
"CUS",
"CAE",
"CAC",
"EAA",
"SEA"
],
"minLength": 3,
"maxLength": 3,
"metadata": {
"description": "Naming Scheme Parameter: Location means the region you are trying to deploy into, 'EUW' means Europe West, 'EUN' means Europe North"
}
},
"VM_Functionality_ShortName": {
"type": "string",
"defaultValue": "SQL",
"minLength": 2,
"maxLength": 4,
"metadata": {
"description": "Naming Scheme Parameter: Functionality Name means the short name of the VM function, such as 'SQL', 'APP', 'AOS', 'EP', 'CRM', 'NAV'."
}
},
"VM_OS_Type": {
"type": "string",
"defaultValue": "Windows",
"allowedValues": [
"Windows",
"Linux"
]
},
"VM_OperatingSystem": {
"type": "string",
"defaultValue": "Windows Server 2016",
"allowedValues": [
"Custom Image",
"Windows Server 2016",
"Windows Server 2012 R2",
"SUSE Linux Enterprise 12 SP3",
"RedHat Enterprise Linux 7.4",
"Oracle Linux Enterprise 7.4",
"Other"
],
"metadata": {
"description": "The type of the operating system on the virtual machine set. Custom Image implies the need to fill in parameters for a Source Storage Account if its unmanaged and Image Resource ID if managed Disk"
}
},
"VM_CustomImage_Settings": {
"type": "object",
"defaultValue": {
"sku": "2012-R2-Datacenter",
"offer": "WindowsServer",
"publisher": "MicrosoftWindowsServer",
"version": "latest"
},
"metadata": {
"description": "Fill this with the Image Refernce for the OS Type you selected above.",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom Image"
}
},
"VM_OS_Windows_License": {
"type": "string",
"defaultValue": "Licensed",
"allowedValues": [
"Licensed",
"BYOL"
],
"metadata": {
"description": "If Windows Server is selected, select whether you're using the Hybrid Cloud Benefit for using your own license",
"DependesOn": "VM_OS_Type",
"ActivateValue": "Windows"
}
},
"VM_With_Plan": {
"defaultValue": "False",
"type": "string",
"allowedValues": [
"False",
"True"
],
"metadata": {
"description": "Set it to 'True' only if the OS has a special plan. Example: Password Manager Pro"
}
},
"VM_Plan_OS": {
"type": "string",
"defaultValue": "Managed_Password_Pro",
"metadata": {
"description": "Skip this if the previous parameter is false",
"DependesOn": "VM_With_Plan",
"ActivateValue": "True"
}
},
"VM_Plan": {
"type": "object",
"defaultValue": {
"name": "pmp9100",
"publisher": "manageengine",
"product": "passwordmanagerpro-ee"
},
"metadata": {
"description": "Skip this if the VM_With_Plan parameter is false",
"DependesOn": "VM_With_Plan",
"ActivateValue": "True"
}
},
"VM_Size": {
"type": "string",
"defaultValue": "Standard_D2s_v3",
"allowedValues": [
"Standard_D2s_v3",
"Standard_D4s_v3",
"Standard_D8s_v3",
"Standard_D16s_v3",
"Standard_E2s_v3",
"Standard_E4s_v3",
"Standard_E8s_v3",
"Standard_E16s_v3",
"Standard_E32s_v3",
"Standard_E64s_v3",
"Standard_DS1_v2",
"Standard_DS2_v2",
"Standard_DS3_v2",
"Standard_DS4_v2",
"Standard_DS5_v2",
"Standard_DS6_v2",
"Standard_DS7_v2",
"Standard_DS8_v2",
"Standard_DS9_v2",
"Standard_DS10_v2",
"Standard_DS11_v2",
"Standard_DS12_v2",
"Standard_DS13_v2",
"Standard_DS14_v2"
]
},
"VM_NumberOfInstances": {
"type": "int",
"defaultValue": 1,
"minValue": 1,
"maxValue": 10,
"metadata": {
"description": "Define the Number of Virtual Machines to Deploy. The Default is '1'."
}
},
"VM_InstancesStartingCounter": {
"type": "int",
"defaultValue": 1,
"minValue": 1,
"metadata": {
"description": "This counter is important. It determines on which instance number to start deploying. If you have previously deployed 2 instances, and you want to increase them, then definatly start with the number 3 to avoid issues."
}
},
"VM_AdminUsername": {
"type": "string",
"defaultValue": "layan",
"metadata": {
"description": "Admin Account username"
}
},
"VM_AdminPassword": {
"type": "securestring",
"metadata": {
"description": "The password of the admin account"
}
},
"VM_WithAvailablitySet": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"description": "Specify if the Virtual Machine will be contained in an availability Set, if 'True', then an AS will be created for the VM Functionality."
}
},
"VM_DisksType": {
"defaultValue": "ManagedDisk",
"type": "string",
"allowedValues": [
"ManagedDisk",
"UnmanagedDisk"
],
"metadata": {
"description": "Specify whether the VM set will use Managed Disks or Unmanaged Disks. Managed Disks act as their own resource while unmanaged disks are stored in storage accounts."
}
},
"VM_OSDisk_Type": {
"defaultValue": "Standard",
"type": "string",
"allowedValues": [
"Standard",
"Premium"
],
"metadata": {
"description": "Specify whether the VM OS Disk will be Standard or Premium. "
}
},
"VM_Include_DataDisks": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"False",
"True"
],
"metadata": {
"description": "Specify whether the VM contains Data Disks or not. "
}
},
"VM_DataDisk_Type": {
"defaultValue": "Standard",
"type": "string",
"allowedValues": [
"Standard",
"Premium"
],
"metadata": {
"description": "Specify whether the VM Data Disks will be Standard or Premium. ",
"DependesOn": "VM_Include_DataDisks",
"ActivateValue": "True",
"DefaultValue": "True"
}
},
"VM_NumberOfDataDisks": {
"type": "int",
"defaultValue": 1,
"minValue": 1,
"maxValue": 8,
"metadata": {
"DependesOn": "VM_Include_DataDisks",
"ActivateValue": "True",
"DefaultValue": "True"
}
},
"VM_DataDiskSizeGB": {
"type": "int",
"defaultValue": 20,
"metadata": {
"DependesOn": "VM_Include_DataDisks",
"ActivateValue": "True",
"DefaultValue": "True"
}
},
"VM_Diagnostics_Enabled": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"description": "Specify whether the VM has diagnostics enabled or disabled"
}
},
"VM_CustomImage_UnmanagedDisk_Source_StorageAccount_Name": {
"type": "string",
"defaultValue": "ebecsstorageaccount",
"minLength": 5,
"maxLength": 34,
"metadata": {
"description": "Specify the name of the storage account where the source image resides",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom^Image",
"Condition": "VM_DisksType",
"ConditionValue": "UnmanagedDisk"
}
},
"VM_CustomImage_UnmanagedDisk_Source_Container_Name": {
"type": "string",
"defaultValue": "images",
"minLength": 1,
"metadata": {
"description": "Specify the name of the container in the storage account where the source image resides",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom^Image",
"Condition": "VM_DisksType",
"ConditionValue": "UnmanagedDisk"
}
},
"VM_CustomImage_UnmanagedDisk_Source_Image_Name": {
"type": "string",
"defaultValue": "testimage.vhd",
"minLength": 1,
"metadata": {
"description": "Specify the name of the image name in the container",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom^Image",
"Condition": "VM_DisksType",
"ConditionValue": "UnmanagedDisk"
}
},
"VM_CustomImage_ManagedDisk_Source_ResourceGroup_Name": {
"type": "string",
"defaultValue": "ResourceGroupA",
"minLength": 1,
"metadata": {
"description": "Specify the name of the resource group that contains the Image VHD Resource",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom^Image",
"Condition": "VM_DisksType",
"ConditionValue": "ManagedDisk"
}
},
"VM_CustomImage_ManagedDisk_Source_Image_Name": {
"type": "string",
"defaultValue": "DaaS-Image",
"minLength": 1,
"metadata": {
"description": "Specify the name Image Resource. The template automatically constructs the template resource ID",
"DependesOn": "VM_OperatingSystem",
"ActivateValue": "Custom^Image",
"Condition": "VM_DisksType",
"ConditionValue": "ManagedDisk"
}
},
"VNET_Name": {
"type": "string",
"defaultValue": "CUS-ENV-LOC-VNET",
"metadata": {
"description": "This parameter is needed if you are not deploying a VNET in this deployment. Even if you are, you could specify its name to overwrite the default CUS-ENV-LOC-VNET"
}
},
"VNET_ResourceGroupName": {
"type": "string",
"defaultValue": "CUS-ENV-LOC-NTWRK-RG",
"metadata": {
"description": "The name of the resource group containing the VNET, this parameter is required when selecting 'False for VNET in Same Resource Group, indicating the VNET is in another Resource Group. If a new VNET and RG VNET is created, the name of RG should be CUS-ENV-LOC-NTWRK-RG"
}
},
"VM_Dual_NICs": {
"defaultValue": "False",
"type": "string",
"allowedValues": [
"False"
],
"metadata": {
"description": "Specify whether the VM has two NICs or a Single NIC"
}
},
"VM_NIC_IPAddress_Allocation_Method": {
"defaultValue": "Static",
"type": "string",
"allowedValues": [
"Static",
"Dynamic"
],
"metadata": {
"description": "Specify the private IP allocation method"
}
},
"VM_NIC_IPAddress_Counter": {
"type": "int",
"defaultValue": 30,
"minValue": 30,
"maxValue": 50,
"metadata": {
"description": "The IP Address for the Network Interface, if '4' is selected, the the NIC IP combo with subnet will be '192.168.0.4'. This number will increment based on the number of instances specified"
}
},
"VM_NIC_Type": {
"defaultValue": "Backend",
"type": "string",
"allowedValues": [
"Frontend",
"Backend"
],
"metadata": {
"description": "Specify if the Virtual Machine is on the Frontend subnet, if 'True', then a Public IP will be created for the VM."
}
},
"VM_LoadBalanced": {
"defaultValue": "False",
"type": "string",
"allowedValues": [
"False",
"True"
],
"metadata": {
"description": "If The VM Load Balanced is set to True, then all parameters with 'VM_LB_' are required."
}
},
"VM_LB_Type": {
"defaultValue": "Internal",
"type": "string",
"allowedValues": [
"Internal",
"External",
"Application_Gateway"
],
"metadata": {
"description": "This is required if the VM_LoadBalanced is set to True, Internal Load Balancer is not exposed while the External Load Balancer has a Public IP with it. Or it deploys Application Gateway",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM-or-LB_Subnet_Name_FirstSecondThirdOctet": {
"type": "array",
"defaultValue": [
"Application",
"10.200.4"
],
"metadata": {
"description": "Specify the VM / LB subnet that will be connected to. This is an array, define it just as the default value specified for you. The first section is for the Subnet Name, and the second part is the prefix of its IP address (e.g. xxx.xxx.xxx)",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_Include_LoadBalancingRules": {
"type": "string",
"defaultValue": "True",
"allowedValues": [
"True"
],
"metadata": {
"description": "The Load Balancing Rules Names, as an Array",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_LoadBalancingRules_EnableFloatingIP": {
"type": "bool",
"defaultValue": false,
"allowedValues": [
true,
false
],
"metadata": {
"description": "Enable Floating IP On LB Rules",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_ILB_LoadBalancer_IP_Counter": {
"type": "int",
"defaultValue": 50,
"minValue": 50,
"maxValue": 59,
"metadata": {
"description": "The IP Counter that creates the last octet from the IP Address. This only applies for an Internal Load Balancer Type. If Subnet is '10.200.1' and this counter is at '50'. Then the ILB IP will be '10.200.1.50'",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_LoadBalancingRules_Names": {
"type": "array",
"defaultValue": [
"SQL-Rule",
"AX-Rule"
],
"metadata": {
"description": "The Load Balancing Rules Names, as an Array",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_LoadBalancingRules_Ports": {
"type": "array",
"defaultValue": [
1433,
2712
],
"metadata": {
"description": "The Load Balancing Rules Ports, as an Array. The first Port is for the first Rule Name defined above it.",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_Include_InboundNAT_Rules": {
"type": "string",
"defaultValue": "False",
"allowedValues": [
"False",
"True"
],
"metadata": {
"description": "The Load Balancing Rules Names, as an Array",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_InboundNAT_Rules_EnableFloatingIP": {
"type": "bool",
"defaultValue": false,
"allowedValues": [
false,
true
],
"metadata": {
"description": "Enable Floating IP On NAT Rules",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_Inbound_NAT_Rules_Names": {
"type": "array",
"defaultValue": [
"VM1-RDP",
"VM2-RDP"
],
"metadata": {
"description": "The Load Balancing Rules Names, as an Array",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_InboundNAT_Rules_Backend_Port": {
"type": "int",
"defaultValue": 3389,
"metadata": {
"description": "The Load Balancing Rules Ports, as an Array. The first Port is for the first Rule Name defined above it.",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_InboundNAT_Rules_Frontend_Ports": {
"type": "array",
"defaultValue": [
3389,
3390
],
"metadata": {
"description": "The Load Balancing Rules Ports, as an Array. The first Port is for the first Rule Name defined above it.",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_Update_Subnet_NSG_Rules": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"description": "This parameter determines whether the NSG settings should be updated to open Load Balancer Ports, only use this if an NSG exists for the subnet",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_LB_Subnet_NSG_Rules_Counter": {
"type": "int",
"defaultValue": 125,
"minValue": 125,
"metadata": {
"description": "The priority counter for the NSG Update. Be sure to select un-used priorities. Minimum priority is 125",
"DependesOn": "VM_LoadBalanced",
"ActivateValue": "True"
}
},
"VM_AppGateway_Subnet_Name": {
"type": "string",
"metadata": {
"description": "select the subnet that you would like to deploy AppGW into, it should be emoty and solely for AppGW",
"DependesOn": "VM_LB_Type",
"ActivateValue": "Application_Gateway"
}
},
"VM_AppGateway_Size": {
"type": "string",
"allowedValues": [
"WAF_Medium",
"WAF_Large"
],
"metadata": {
"description": "if you choose to creat an application gateway, you need to specify the size",
"DependesOn": "VM_LB_Type",
"ActivateValue": "Application_Gateway"
}
},
"VM_AppGW_WAF_Mode": {
"type": "string",
"allowedValues": [
"Detection",
"Prevention"
],
"metadata": {
"DependesOn": "VM_LB_Type",
"ActivateValue": "Application_Gateway"
}
},
"VM_AppGW_WAF_RuleSet_Version": {
"type": "string",
"allowedValues": [
"2.2.9",
"3.0"
],
"metadata": {
"DependesOn": "VM_LB_Type",
"ActivateValue": "Application_Gateway"
}
},
"VM_Windows_BG_Extension": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"True",
"False"
]
},
"VM_Windows_Antimalware_Extension": {
"defaultValue": "True",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"DependesOn": "VM_Windows_BG_Extension",
"ActivateValue": "True"
}
},
"VM_NIC_With_CustomDNS": {
"defaultValue": "False",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"description": "Specify if the NIC is will have a custom DNS Server IP Instead of the Azure DNS",
"DependesOn": "VM_Windows_BG_Extension",
"ActivateValue": "True"
}
},
"VM_NIC_DNS_IP": {
"type": "array",
"defaultValue": [
"10.200.4.4",
"10.200.4.5"
],
"metadata": {
"description": "Specify the DNS Servers that the VM will use. This is an array, data is provided between quotes and comma seperated",
"DependesOn": "VM_Windows_BG_Extension",
"ActivateValue": "True"
}
},
"VM_Windows_JoinToExistingDomain_Extension": {
"defaultValue": "False",
"type": "string",
"allowedValues": [
"True",
"False"
],
"metadata": {
"DependesOn": "VM_Windows_BG_Extension",
"ActivateValue": "True"
}
},
"VM_DomainJoin_DomainName": {
"type": "string",
"defaultValue": "domain.com",
"metadata": {
"description": "The FQDN of the AD domain",
"DependesOn": "VM_Windows_JoinToExistingDomain_Extension",
"ActivateValue": "True"
}
},
"VM_DomainJoin_OU_Path": {
"defaultValue": "OU=Domain Controllers; DC=domainname; DC=COM",
"type": "string",
"metadata": {
"description": "Specifies an organizational unit (OU) for the domain account. Enter the full distinguished name of the OU. Example: (OU=testOU; DC=domain; DC=Domain; DC=com) ",
"DependesOn": "VM_Windows_JoinToExistingDomain_Extension",
"ActivateValue": "True"
}
},
"VM_DomainJoin_DomainAdmin_UserName": {
"type": "string",
"defaultValue": "[email protected]",
"metadata": {
"description": "Username of the account on the domain example ([email protected])",
"DependesOn": "VM_Windows_JoinToExistingDomain_Extension",
"ActivateValue": "True"
}
},
"VM_DomainJoin_DomainAdmin_Password": {
"type": "securestring",
"metadata": {
"description": "Password of the account on the domain",
"DependesOn": "VM_Windows_JoinToExistingDomain_Extension",
"ActivateValue": "True"
}
},
"Deployment_SAS_Token": {
"type": "securestring"
}
},
"variables": {
// Templates Locations
"Template_VM_JSON": "Virtual_Machine.json",
"Template_VM_With_Plan_JSON": "Virtual_Machine_With_Plan.json",
"Template_VM_AppGW": "AppGW.json",
"Templates_StorageAccount": "https://std3f88152.blob.core.windows.net",
"Templates_StorageContainer": "templates/VM/nestedtemplates",
"Template_VM_LB_ILB_True": "VM_ILB.json",
"Template_VM_LB_ELB_True": "VM_ELB.json",
"Template_VM_NIC_Frontend_JSON": "VM_NIC_Frontend.json",
"Template_VM_NIC_Backend_JSON": "VM_NIC_Backend.json",
"Template_VM_AS_JSON": "VM_AvailabilitySet.json",
"Template_VM_Storage_JSON": "VM_StorageAccount.json",
"Template_VM_ManagedDisk_JSON": "VM_ManagedDisk.json",
// Extension Templates
"Template_VM_Windows_BG_Extension": "VM_Windows_BG_Extension.json",
"Template_VM_Windows_Antimalware_Extension": "VM_Windows_Antimalware_Extension.json",
"Template_VM_Windows_CustomScript_Extension": "VM_Windows_CustomScriptExtension.json",
"Template_VM_Windows_JoinToExistingDomain_Extension": "VM_Windows_JoinToExistingDomain_Extension.json",
// Disk Arrays
"Template_VM_UnmanagedDisk_DataDisk_Array_JSON": "DataDisk_Array_UnmanagedDisk.json",
"Template_VM_ManagedDisk_DataDisk_Array_JSON": "DataDisk_Array_ManagedDisk.json",
// VM Subnet Name Extraction
"VM_Subnet_Name": "[parameters('VM-or-LB_Subnet_Name_FirstSecondThirdOctet')[0]]",
"VM_Subnet_NSG_Name": "[concat(parameters('Customer_ShortName'),'-',parameters('Environment_ShortName'),'-',parameters('Location_ShortName'),'-',split(parameters('VM-or-LB_Subnet_Name_FirstSecondThirdOctet')[0],'_')[0],'-NSG')]",
//ILB Deployment Settings:
//LB Names
"LB_External": "[concat(parameters('Customer_ShortName'), '-', parameters('Environment_ShortName'),'-', parameters('VM_Functionality_ShortName'),'-', 'ELB')]",
"LB_External_Pool": "[concat(variables('LB_External'),'-pool')]",
"LB_Internal": "[concat(parameters('Customer_ShortName'), '-', parameters('Environment_ShortName'),'-', parameters('VM_Functionality_ShortName'),'-', 'ILB')]",
"LB_Internal_Pool": "[concat(variables('LB_Internal'),'-pool')]",
"App_GW": "[concat(parameters('Customer_ShortName'), '-', parameters('Environment_ShortName'),'-', parameters('VM_Functionality_ShortName'),'-', 'AppGW')]",
"App_GW_Pool": "appGatewayBackendPool",
"VM_Subnet_FirstSecondThirdOctet_IPAddress": "[parameters('VM-or-LB_Subnet_Name_FirstSecondThirdOctet')[1]]",
// VM Name
"VM_Name": "[concat(parameters('Customer_ShortName'),'-',parameters('Environment_ShortName'),'-',parameters('VM_Functionality_ShortName'))]",
//Storage Accounts for VM Functionality
"VM_Diag_StorageAccount_Name": "[concat(replace(toLower(variables('VM_Name')),'-',''),'diag')]",
"VM_Std_StorageAccount_Name": "[concat(replace(toLower(variables('VM_Name')),'-',''),'std')]",
"VM_Prm_StorageAccount_Name": "[concat(replace(toLower(variables('VM_Name')),'-',''),'prm')]",
// VM NIC Settings:
"VM_NIC_Frontend": "[if(equals(parameters('VM_NIC_Type'),'Frontend'),'True','False')]",
"VM_NIC_Backend": "[if(equals(parameters('VM_NIC_Type'),'Backend'),'True','False')]",
// VM OS Settings
"OS-Windows Server 2012 R2": {
"sku": "2012-R2-Datacenter",
"offer": "WindowsServer",
"publisher": "MicrosoftWindowsServer",
"version": "latest"
},
"OS-Windows Server 2016": {
"sku": "2016-Datacenter",
"offer": "WindowsServer",
"publisher": "MicrosoftWindowsServer",
"version": "latest"
},
"OS-SUSE Linux Enterprise 12 SP3": {
"publisher": "SUSE",
"offer": "SLES",
"sku": "12-SP3",
"version": "latest"
},
"OS-RedHat Enterprise Linux 7.4": {
"publisher": "RedHat",
"offer": "RHEL",
"sku": "7-RAW",
"version": "latest"
},
"OS-Oracle Linux Enterprise 7.4": {
"publisher": "Oracle",
"offer": "Oracle-Linux",
"sku": "7.4",
"version": "latest"
},
/* "OS-Managed_Password_Pro": {
"publisher": "manageengine",
"offer": "passwordmanagerpro-ee",
"sku": "pmp9100",
"version": "latest"
},*/
// "OS-Custom Image": "[parameters('VM_CustomImage_Settings')]",
"DomainJoinOption": 3,
// Dummy arrays are used in the case of a false deployment for data disks
"Dummy_Array_UnmanagedDisk": [
{
"name": "[concat(variables('VM_Name'), '-DataDisk-01')]",
"diskSizeGB": 2,
"lun": 0,
"caching": "None",
"createOption": "Attach",
"managedDisk": {
"id": "[resourceId('Microsoft.Compute/disks', concat(variables('VM_Name'),'-','DataDisk-01'))]"
}
}
],
"Dummy_Array_ManagedDisk": [
{
"name": "[concat(variables('VM_Name'), '-DataDisk-01')]",
"diskSizeGB": "[parameters('VM_DataDiskSizeGB')]",
"lun": 0,
"caching": "None",
"createOption": "Attach",
"managedDisk": {
"id": "[resourceId('Microsoft.Compute/disks', concat(variables('VM_Name'),'-','DataDisk-01'))]"
}
}
]
},
"resources": [
///////////////// Load Balancers Templates \\\\\\\\\\\\\\\\\\\
// Internal Load Balancer
{
"condition": "[and(equals(parameters('VM_LoadBalanced'),'True'),equals(parameters('VM_LB_Type'),'Internal'))]",
"name": "VM_ILB_True",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2017-05-10",
"dependsOn": [
],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('Templates_StorageAccount'), '/', variables('Templates_StorageContainer'), '/', variables('Template_VM_LB_ILB_True'), parameters('Deployment_SAS_Token'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"Customer_ShortName": { "value": "[parameters('Customer_ShortName')]" },
"Environment_ShortName": { "value": "[parameters('Environment_ShortName')]" },
"Location_ShortName": { "value": "[parameters('Location_ShortName')]" },
"Functionality_ShortName": { "value": "[parameters('VM_Functionality_ShortName')]" },
"VNET_Name": { "value": "[parameters('VNET_Name')]" },
"VNET_ResourceGroupName": { "value": "[parameters('VNET_ResourceGroupName')]" },
"VNET_Subnet_Name": { "value": "[variables('VM_Subnet_Name')]" },
"VNET_Subnet_NSG_Name": { "value": "[variables('VM_Subnet_NSG_Name')]" },
"VNET_Subnet_FirstSecondThirdOctet": { "value": "[variables('VM_Subnet_FirstSecondThirdOctet_IPAddress')]" },
"LoadBalancer_IP_Counter": { "value": "[parameters('VM_ILB_LoadBalancer_IP_Counter')]" },
"Include_LoadBalancingRules": { "value": "[parameters('VM_LB_Include_LoadBalancingRules')]" },
"LoadBalancingRules_EnableFloatingIP": { "value": "[parameters('VM_LB_LoadBalancingRules_EnableFloatingIP')]" },
"LoadBalancingRules_Names": { "value": "[parameters('VM_LB_LoadBalancingRules_Names')]" },
"LoadBalancingRules_Ports": { "value": "[parameters('VM_LB_LoadBalancingRules_Ports')]" },
"Include_InboundNAT_Rules": { "value": "[parameters('VM_LB_Include_InboundNAT_Rules')]" },
"InboundNAT_Rules_EnableFloatingIP": { "value": "[parameters('VM_LB_InboundNAT_Rules_EnableFloatingIP')]" },
"Inbound_NAT_Rules_Names": { "value": "[parameters('VM_LB_Inbound_NAT_Rules_Names')]" },
"InboundNAT_Rules_Backend_Port": { "value": "[parameters('VM_LB_InboundNAT_Rules_Backend_Port')]" },
"InboundNAT_Rules_Frontend_Ports": { "value": "[parameters('VM_LB_InboundNAT_Rules_Frontend_Ports')]" },
"Update_Subnet_NSG_Rules": { "value": "[if(equals(parameters('VNET_Name'),concat(parameters('Customer_ShortName'),'-',parameters('Environment_ShortName'),'-',parameters('Location_ShortName'),'-VNET')),parameters('VM_LB_Update_Subnet_NSG_Rules'),'False')]" },
"Subnet_NSG_Rules_Counter": { "value": "[parameters('VM_LB_Subnet_NSG_Rules_Counter')]" },
"Deployment_SAS_Token": { "value": "[parameters('Deployment_SAS_Token')]" }
}
}
},
// External Load Balancer
{
"condition": "[and(equals(parameters('VM_LoadBalanced'),'True'),equals(parameters('VM_LB_Type'),'External'))]",
"name": "VM_ELB_True",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2017-05-10",
"dependsOn": [],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('Templates_StorageAccount'), '/', variables('Templates_StorageContainer'), '/', variables('Template_VM_LB_ELB_True'), parameters('Deployment_SAS_Token'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"Customer_ShortName": { "value": "[parameters('Customer_ShortName')]" },
"Environment_ShortName": { "value": "[parameters('Environment_ShortName')]" },
"Location_ShortName": { "value": "[parameters('Location_ShortName')]" },
"Functionality_ShortName": { "value": "[parameters('VM_Functionality_ShortName')]" },
"VNET_Name": { "value": "[parameters('VNET_Name')]" },
"VNET_ResourceGroupName": { "value": "[parameters('VNET_ResourceGroupName')]" },
"VNET_Subnet_Name": { "value": "[variables('VM_Subnet_Name')]" },
"VNET_Subnet_NSG_Name": { "value": "[variables('VM_Subnet_NSG_Name')]" },
"VNET_Subnet_FirstSecondThirdOctet": { "value": "[variables('VM_Subnet_FirstSecondThirdOctet_IPAddress')]" },
"Include_LoadBalancingRules": { "value": "[parameters('VM_LB_Include_LoadBalancingRules')]" },
"LoadBalancingRules_EnableFloatingIP": { "value": "[parameters('VM_LB_LoadBalancingRules_EnableFloatingIP')]" },
"LoadBalancingRules_Names": { "value": "[parameters('VM_LB_LoadBalancingRules_Names')]" },
"LoadBalancingRules_Ports": { "value": "[parameters('VM_LB_LoadBalancingRules_Ports')]" },
"Include_InboundNAT_Rules": { "value": "[parameters('VM_LB_Include_InboundNAT_Rules')]" },
"InboundNAT_Rules_EnableFloatingIP": { "value": "[parameters('VM_LB_InboundNAT_Rules_EnableFloatingIP')]" },
"Inbound_NAT_Rules_Names": { "value": "[parameters('VM_LB_Inbound_NAT_Rules_Names')]" },
"InboundNAT_Rules_Backend_Port": { "value": "[parameters('VM_LB_InboundNAT_Rules_Backend_Port')]" },
"InboundNAT_Rules_Frontend_Ports": { "value": "[parameters('VM_LB_InboundNAT_Rules_Frontend_Ports')]" },
"Update_Subnet_NSG_Rules": { "value": "[if(equals(parameters('VNET_Name'),concat(parameters('Customer_ShortName'),'-',parameters('Environment_ShortName'),'-',parameters('Location_ShortName'),'-VNET')),parameters('VM_LB_Update_Subnet_NSG_Rules'),'False')]" },
"Subnet_NSG_Rules_Counter": { "value": "[parameters('VM_LB_Subnet_NSG_Rules_Counter')]" },
"Deployment_SAS_Token": { "value": "[parameters('Deployment_SAS_Token')]" }
}
}
},
// Application Gateway Template
{
"condition": "[and(equals(parameters('VM_LoadBalanced'),'True'),equals(parameters('VM_LB_Type'),'Application_Gateway'))]",
"name": "VM_AppGW",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2017-05-10",
"dependsOn": [],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('Templates_StorageAccount'), '/', variables('Templates_StorageContainer'), '/', variables('Template_VM_AppGW'), parameters('Deployment_SAS_Token'))]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"Customer_ShortName": { "value": "[parameters('Customer_ShortName')]" },
"Environment_ShortName": { "value": "[parameters('Environment_ShortName')]" },
"VM_Functionality_ShortName": { "value": "[parameters('VM_Functionality_ShortName')]" },
"VNET_Name": { "value": "[parameters('VNET_Name')]" },
"VNET_ResourceGroupName": { "value": "[parameters('VNET_ResourceGroupName')]" },
"VM_AppGW_InstanceCount": { "value": "[parameters('VM_NumberOfInstances')]" },
"VM_AppGateway_Subnet_Name": { "value": "[parameters('VM_AppGateway_Subnet_Name')]" },
"VM_AppGateway_Size": { "value": "[parameters('VM_AppGateway_Size')]" },
"VM_AppGW_WAF_Mode": { "value": "[parameters('VM_AppGW_WAF_Mode')]" },
"VM_AppGW_WAF_RuleSet_Version": { "value": "[parameters('VM_AppGW_WAF_RuleSet_Version')]" },