forked from oci-landing-zones/oracle-enterprise-landingzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.yaml
1216 lines (1207 loc) · 43.7 KB
/
schema.yaml
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
title: Oracle Enterprise Landing Zone 2.0
description: Oracle Enterprise Landing Zone 2.0 developed by OCI
schemaVersion: 1.0.0
version: "1.0.0"
locale: en
variableGroups:
- title: Provider Variables
visible: false
variables:
- api_fingerprint
- api_private_key_path
- api_private_key
- region
- tenancy_ocid
- current_user_ocid
- title: IAM Variables
visible: true
variables:
- resource_label
- home_compartment_name
- prod_domain_admin_email
- nonprod_domain_admin_email
- enable_compartment_delete
- break_glass_user_email_list
- show_extra_group_names
- prod_network_admin_group_name
- prod_security_admin_group_name
- prod_iam_admin_group_name
- prod_platform_admin_group_name
- prod_ops_admin_group_name
- prod_log_admin_group_name
- prod_workload_admin_group_name
- prod_application_admin_group_name
- prod_database_admin_group_name
- nonprod_network_admin_group_name
- nonprod_security_admin_group_name
- nonprod_iam_admin_group_name
- nonprod_platform_admin_group_name
- nonprod_ops_admin_group_name
- nonprod_log_admin_group_name
- nonprod_workload_admin_group_name
- nonprod_application_admin_group_name
- nonprod_database_admin_group_name
- prod_workload_compartment_names
- nonprod_workload_compartment_names
- title: Security Variables
visible: true
variables:
- enable_cloud_guard
- cloud_guard_target_tenancy
- prod_enable_bastion
- prod_bastion_client_cidr_block_allow_list
- nonprod_enable_bastion
- nonprod_bastion_client_cidr_block_allow_list
- title: Budget Variables
visible: true
variables:
- prod_enable_budget
- prod_budget_alert_rule_message
- prod_budget_alert_rule_recipients
- prod_budget_alert_rule_threshold
- prod_budget_amount
- nonprod_enable_budget
- nonprod_budget_alert_rule_message
- nonprod_budget_alert_rule_recipients
- nonprod_budget_alert_rule_threshold
- nonprod_budget_amount
- title: Network Variables
visible: true
variables:
- prod_enable_internet_gateway_hub
- prod_enable_nat_gateway_hub
- prod_enable_service_gateway_hub
- prod_enable_nat_gateway_spoke
- prod_enable_service_gateway_spoke
- prod_hub_vcn_cidr_block
- prod_hub_public_subnet_cidr_block
- prod_hub_private_subnet_cidr_block
- prod_spoke_vcn_cidr
- prod_spoke_subnet_web_cidr_block
- prod_spoke_subnet_app_cidr_block
- prod_spoke_subnet_db_cidr_block
- nonprod_enable_internet_gateway_hub
- nonprod_enable_nat_gateway_hub
- nonprod_enable_service_gateway_hub
- nonprod_enable_nat_gateway_spoke
- nonprod_enable_service_gateway_spoke
- nonprod_hub_vcn_cidr_block
- nonprod_hub_public_subnet_cidr_block
- nonprod_hub_private_subnet_cidr_block
- nonprod_spoke_vcn_cidr
- nonprod_spoke_subnet_web_cidr_block
- nonprod_spoke_subnet_app_cidr_block
- nonprod_spoke_subnet_db_cidr_block
- prod_additional_workload_subnets_cidr_blocks
- nonprod_additional_workload_subnets_cidr_blocks
- title: Tagging Variables
visible: true
variables:
- prod_enable_tagging
- prod_cost_center_tagging
- prod_geo_location_tagging
- nonprod_enable_tagging
- nonprod_cost_center_tagging
- nonprod_geo_location_tagging
- title: Logging Variables
visible: true
variables:
- archive_log_retention_policy_duration_amount
- archive_log_retention_policy_duration_time_unit
- prod_retention_policy_duration_amount
- prod_retention_policy_duration_time_unit
- nonprod_retention_policy_duration_amount
- nonprod_retention_policy_duration_time_unit
- title: Monitoring Variables
visible: true
variables:
- onboard_log_analytics
- prod_network_topic_endpoints
- prod_secops_topic_endpoints
- prod_platform_topic_endpoints
- prod_identity_topic_endpoints
- prod_workload_topic_endpoints
- nonprod_network_topic_endpoints
- nonprod_secops_topic_endpoints
- nonprod_platform_topic_endpoints
- nonprod_identity_topic_endpoints
- nonprod_workload_topic_endpoints
- prod_enable_security_monitoring_alarms
- prod_enable_network_monitoring_alarms
- prod_enable_workload_monitoring_alarms
- nonprod_enable_security_monitoring_alarms
- nonprod_enable_network_monitoring_alarms
- nonprod_enable_workload_monitoring_alarms
- title: Network Extension Variables
visible: true
variables:
- enable_vpn_or_fastconnect
- show_vpn_variables
- prod_enable_vpn
- nonprod_enable_vpn
- prod_cpe_display_name
- nonprod_cpe_display_name
- prod_cpe_ip_address
- nonprod_cpe_ip_address
- prod_ipsec_display_name
- nonprod_ipsec_display_name
- prod_ipsec_connection_static_routes
- nonprod_ipsec_connection_static_routes
- prod_cpe_vendor
- nonprod_cpe_vendor
- prod_ipsec_routing_type
- prod_tunnel_a_display_name
- prod_customer_bgp_asn
- prod_bgp_cust_tunnela_ip
- prod_bgp_oci_tunnela_ip
- prod_shared_secret
- prod_tunnel_b_display_name
- nonprod_ipsec_routing_type
- nonprod_tunnel_a_display_name
- nonprod_customer_bgp_asn
- nonprod_bgp_cust_tunnela_ip
- nonprod_bgp_oci_tunnela_ip
- nonprod_shared_secret
- nonprod_tunnel_b_display_name
- show_fastconnect_variables
- fastconnect_provider
- virtual_circuit_bandwidth_shape
- virtual_circuit_display_name
- provider_service_key_name
- fastconnect_routing_policy
- virtual_circuit_type
- customer_primary_bgp_peering_ip
- oracle_primary_bgp_peering_ip
- customer_secondary_bgp_peering_ip
- oracle_secondary_bgp_peering_ip
- virtual_circuit_customer_asn
- virtual_circuit_is_bfd_enabled
- bgp_md5auth_key
- customer_onprem_ip_cidr
- title: Invisible Variables
visible: false
variables:
- igw_hub_check
- nat_gw_hub_check
- nat_gw_spoke_check
- service_gw_hub_check
- service_gw_spoke_check
- nonprod_create_master_encryption_key
- nonprod_enable_vault_replication
- nonprod_vault_replica_region
- nonprod_vault_type
- prod_create_master_encryption_key
- prod_enable_vault_replication
- prod_vault_replica_region
- prod_vault_type
- nonprod_enable_fastconnect
- prod_enable_fastconnect
variables:
#Provider Variables
api_fingerprint:
type: string
description: The fingerprint of API
default: "Value not required in Oracle Resource Manager."
title: Api Fingerprint
api_private_key_path:
type: string
description: The local path to the API private key
default: "Value not required in Oracle Resource Manager."
title: Api Private Key Path
region:
type: string
description: the OCI region LZ is deployed to.
title: Region
required: true
tenancy_ocid:
type: string
description: The OCID of tenancy
title: Tenancy OCID
current_user_ocid:
type: string
description: OCID of the current user
title: Current User OCID
# IAM variables
resource_label:
type: string
description: "The prefix used to avoid naming conflict"
default: ""
required: true
title: Resource Label
home_compartment_name:
type: string
description: "The name of the Landing Zone home compartment"
default: "OCI-ELZ-CMP-HOME"
required: true
title: Home Compartment Name
prod_domain_admin_email:
type: string
description: "The email address for the prod identity domain admin"
required: true
title: Domain Admin Email in Prod
nonprod_domain_admin_email:
type: string
description: "The email address for the non-prod identity domain admin"
required: true
title: Domain Admin Email in Non-Prod
enable_compartment_delete:
type: boolean
description: "Set to true to allow the compartments to delete on terraform destroy."
required: true
title: Enable Compartment Delete
break_glass_user_email_list:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description:
"Unique list of break glass user email addresses that do not exist. These users are added to the Administrator group.
in the tenancy"
required: true
title: Break Glass User Email List
show_extra_group_names:
type: boolean
default: false
required: false
title: Override default group names
prod_network_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Network Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Network Admin Group Name in Prod
prod_security_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Security Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Security Admin Group Name in Prod
prod_iam_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone IAM Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: IAM Admin Group Name in Prod
prod_platform_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Platform Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Platform Admin Group Name in Prod
prod_ops_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Ops Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Ops Admin Group Name in Prod
prod_log_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Log Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Log Admin Group Name in Prod
prod_workload_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Workload Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Workload Admin Group Name in Prod
prod_application_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Application Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Application Admin Group Name in Prod
prod_database_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Database Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Database Admin Group Name in Prod
nonprod_network_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Network Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Network Admin Group Name in Non-Prod
nonprod_security_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Security Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Security Admin Group Name in Non-Prod
nonprod_iam_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone IAM Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: IAM Admin Group Name in Non-Prod
nonprod_platform_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Platform Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Platform Admin Group Name in Non-Prod
nonprod_ops_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Ops Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Ops Admin Group Name in Non-Prod
nonprod_log_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Log Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Log Admin Group Name in Non-Prod
nonprod_workload_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Workload Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Workload Admin Group Name in Non-Prod
nonprod_application_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Application Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Application Admin Group Name in Non-Prod
nonprod_database_admin_group_name:
type: string
description: "The group name for the OCI Landing Zone Database Administrators Group"
required: false
default: ""
visible: show_extra_group_names
pattern: ^([\w\.-]){1,100}$
title: Database Admin Group Name in Non-Prod
# Security Variables
enable_cloud_guard:
type: boolean
description: "true if you don't have cloud guard enabled, false if you've already have cloud guard enabled."
default: true
required: true
title: Enable Cloud Guard
cloud_guard_target_tenancy:
type: boolean
description: "true if cloud guard targets to tenancy, false if cloud guard targets to Landing Zone home compartment."
default: false
required: true
title: Cloud Guard Target Tenancy
prod_enable_bastion:
type: boolean
description: "Option to enable bastion service in prod"
default: true
required: true
title: Enable Bastion in Prod
prod_bastion_client_cidr_block_allow_list:
type: array
items:
type: string
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
description: "A list of address ranges in CIDR notation that bastion is allowed to connect"
required: true
visible: prod_enable_bastion
title: Bastion Client CIDR Block Allow List in Prod
nonprod_enable_bastion:
type: boolean
description: "Option to enable bastion service in non-prod"
default: true
required: true
title: Enable Bastion in Non-Prod
nonprod_bastion_client_cidr_block_allow_list:
type: array
items:
type: string
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
description: "A list of address ranges in CIDR notation that bastion is allowed to connect"
required: true
visible: nonprod_enable_bastion
title: Bastion Client CIDR Block Allow List in Non-Prod
# Budget Variables
prod_enable_budget:
type: boolean
description: "Option to enable budget service in prod."
default: true
required: true
title: Enable Budget Service in Prod
prod_budget_alert_rule_message:
type: string
description: "The alert message for budget alerts."
required: false
default: ""
visible: prod_enable_budget
title: Budget Alert Rule Message in Prod
prod_budget_alert_rule_recipients:
type: string
description: "The delimited list of email addresses to receive the alert when it triggers. Delimiter characters can be a comma, space, TAB, or semicolon"
required: false
default: ""
visible: prod_enable_budget
title: Budget Alert Rule Recipients in Prod
prod_budget_alert_rule_threshold:
type: string
description: "The threshold for the budget alert."
required: false
default: ""
visible: prod_enable_budget
title: Budget Alert Rule Threshold in Prod
prod_budget_amount:
type: string
description: "The amount of the budget expressed as a whole number in the currency of the customer's rate card."
required: false
default: ""
visible: prod_enable_budget
title: Budget Amount in Prod
nonprod_enable_budget:
type: boolean
description: "Option to enable budget service in non-prod."
default: true
required: true
title: Enable Budget Service in Non-Prod
nonprod_budget_alert_rule_message:
type: string
description: "The alert message for budget alerts."
required: false
default: ""
visible: nonprod_enable_budget
title: Budget Alert Rule Message in Non-Prod
nonprod_budget_alert_rule_recipients:
type: string
description: "The delimited list of email addresses to receive the alert when it triggers. Delimiter characters can be a comma, space, TAB, or semicolon"
required: false
default: ""
visible: nonprod_enable_budget
title: Budget Alert Rule Recipients in Non-Prod
nonprod_budget_alert_rule_threshold:
type: string
description: "The threshold for the budget alert."
required: false
default: ""
visible: nonprod_enable_budget
title: Budget Alert Rule Threshold in Non-Prod
nonprod_budget_amount:
type: string
description: "The amount of the budget expressed as a whole number in the currency of the customer's rate card."
required: false
default: ""
visible: nonprod_enable_budget
title: Budget Amount in Non-Prod
# Tagging Variables
prod_enable_tagging:
type: boolean
description: "Option to enable tagging service in prod."
default: true
required: true
title: Enable Tagging Service in Prod
prod_cost_center_tagging:
type: string
description: "Cost center tagging in prod."
required: true
title: Cost Center Tagging in Prod
prod_geo_location_tagging:
type: string
description: "Geo location tagging in prod."
required: true
title: Geo Location Tagging in Prod
nonprod_enable_tagging:
type: boolean
description: "Option to enable tagging service in non-prod."
default: true
required: true
title: Enable Tagging Service in Prod
nonprod_cost_center_tagging:
type: string
description: "Cost center tagging in non-prod."
required: true
title: Cost Center Tagging in Non-Prod
nonprod_geo_location_tagging:
type: string
description: "Geo location tagging in non-prod."
required: true
title: Geo Location Tagging in Non-Prod
# Logging Variables
archive_log_retention_policy_duration_amount:
type: string
description: "The timeAmount is interpreted in units defined by the timeUnit parameter, and is calculated in relation to each object's Last-Modified timestamp"
required: true
default: "1"
title: Retention Policy Duration Amount for Archive Log Bucket
archive_log_retention_policy_duration_time_unit:
type: string
description: "The unit that should be used to interpret timeAmount. Options: DAYS, YEARS"
required: true
default: "DAYS"
title: Retention Policy Duration Time Unit for Archive Log Bucket
prod_retention_policy_duration_amount:
type: string
description: "The timeAmount is interpreted in units defined by the timeUnit parameter, and is calculated in relation to each object's Last-Modified timestamp"
required: true
default: "1"
title: Retention Policy Duration Amount for Standard Log Bucket in Prod
prod_retention_policy_duration_time_unit:
type: string
description: "The unit that should be used to interpret timeAmount. Options: DAYS, YEARS"
required: true
default: "DAYS"
title: Retention Policy Duration Time Unit for Standard Log Bucket in Prod
nonprod_retention_policy_duration_amount:
type: string
description: "The timeAmount is interpreted in units defined by the timeUnit parameter, and is calculated in relation to each object's Last-Modified timestamp"
required: true
default: "1"
title: Retention Policy Duration Amount for Standard Log Bucket in Non-Prod
nonprod_retention_policy_duration_time_unit:
type: string
description: "The unit that should be used to interpret timeAmount. Options: DAYS, YEARS"
required: true
default: "DAYS"
title: Retention Policy Duration Time Unit for Standard Log Bucket in Non-Prod
# Monitoring Variables
onboard_log_analytics:
type: boolean
description: "Set to true to onboard log analytics service. Set to false if it's already onboarded"
default: true
required: true
title: Onboard Log Analytics
prod_network_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Network Warning and Critical notifications."
required: false
default: []
title: Network Warning and Critical Notification Recipient Email List in Prod"
prod_secops_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for SecOps Warning and Critical notifications."
required: false
default: []
title: SecOps Warning and Critical Notification Recipient Email List in Prod"
prod_platform_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Platform notifications."
required: false
default: []
title: Platform Notification Recipient Email List in Prod"
prod_identity_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Identity notifications."
required: false
default: []
title: Identity Notification Recipient Email List in Prod"
prod_workload_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Workload notifications."
required: false
default: []
title: Workload Notification Recipient Email List in Prod"
nonprod_network_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Network Warning and Critical notifications."
required: false
default: []
title: Network Warning and Critical Notification Recipient Email List in Non-Prod"
nonprod_secops_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for SecOps Warning and Critical notifications."
required: false
default: []
title: SecOps Warning and Critical Notification Recipient Email List in Non-Prod"
nonprod_platform_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Platform notifications."
required: false
default: []
title: Platform Notification Recipient Email List in Non-Prod"
nonprod_identity_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Identity notifications."
required: false
default: []
title: Identity Notification Recipient Email List in Non-Prod"
nonprod_workload_topic_endpoints:
type: array
items:
type: string
pattern: ^[^\s@]+@([^\s@.,]+\.)+[^\s@.,]{2,}$
description: "List of email addresses for Workload notifications."
required: false
default: []
title: Workload Notification Recipient Email List in Non-Prod"
prod_enable_security_monitoring_alarms:
type: boolean
description: "Enable Security Monitoring Alarms in Production Security Compartment."
default: false
required: true
title: Enable Security Monitoring Alarms in Prod
prod_enable_network_monitoring_alarms:
type: boolean
description: "Enable Network Monitoring Alarms in Production Network Compartment."
default: false
required: true
title: Enable Network Monitoring Alarms in Prod
prod_enable_workload_monitoring_alarms:
type: boolean
description: "Enable Workload Monitoring Alarms in Production Workload Compartment."
default: false
required: true
title: Enable Workload Monitoring Alarms in Prod
nonprod_enable_security_monitoring_alarms:
type: boolean
description: "Enable Security Monitoring Alarms in Non-Production Security Compartment."
default: false
required: true
title: Enable Security Monitoring Alarms in Non-Prod
nonprod_enable_network_monitoring_alarms:
type: boolean
description: "Enable Network Monitoring Alarms in Non-Production Network Compartment."
default: false
required: true
title: Enable Network Monitoring Alarms in Non-Prod
nonprod_enable_workload_monitoring_alarms:
type: boolean
description: "Enable Workload Monitoring Alarms in Non-Production Workload Compartment."
default: false
required: true
title: Enable Workload Monitoring Alarms in Non-Prod
# Network Variables
prod_enable_internet_gateway_hub:
type: boolean
description: "Option to enable internet gateway in prod hub"
default: true
required: true
title: Enable Internet Gateway in Prod Hub
prod_enable_nat_gateway_hub:
type: boolean
description: "Option to enable nat gateway in prod hub"
default: true
required: true
title: Enable NAT Gateway in Prod Hub
prod_enable_service_gateway_hub:
type: boolean
description: "Option to enable service gateway in prod hub"
default: true
required: true
title: Enable Service Gateway in Prod Hub
prod_enable_nat_gateway_spoke:
type: boolean
description: "Option to enable nat gateway in prod spoke"
default: true
required: true
title: Enable NAT Gateway in Prod Spoke
prod_enable_service_gateway_spoke:
type: boolean
description: "Option to enable service gateway in prod spoke"
default: true
required: true
title: Enable Service Gateway in Prod Spoke
prod_hub_vcn_cidr_block:
type: string
description: "Vcn CIDR block in Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Vcn CIDR Block in Prod Hub
prod_hub_public_subnet_cidr_block:
type: string
description: "Public subnet CIDR block in Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Public Subnet CIDR Block in Prod Hub
prod_hub_private_subnet_cidr_block:
type: string
description: "Private subnet CIDR block in Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Private Subnet CIDR Block in Prod Hub
prod_spoke_vcn_cidr:
type: string
description: "Vcn CIDR block in Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Vcn CIDR Block in Prod Spoke
prod_spoke_subnet_web_cidr_block:
type: string
description: "Web subnet CIDR block in Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Web Subnet CIDR Block in Prod Spoke
prod_spoke_subnet_app_cidr_block:
type: string
description: "App subnet CIDR block in Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: App Subnet CIDR Block in Prod Spoke
prod_spoke_subnet_db_cidr_block:
type: string
description: "Database subnet CIDR block in Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Database Subnet CIDR Block in Prod Spoke
nonprod_enable_internet_gateway_hub:
type: boolean
description: "Option to enable internet gateway in Non-prod hub"
default: true
required: true
title: Enable Internet Gateway in Non-Prod Hub
nonprod_enable_nat_gateway_hub:
type: boolean
description: "Option to enable nat gateway in Non-prod hub"
default: true
required: true
title: Enable NAT Gateway in Non-Prod Hub
nonprod_enable_service_gateway_hub:
type: boolean
description: "Option to enable service gateway in Non-prod hub"
default: true
required: true
title: Enable Service Gateway in Non-Prod Hub
nonprod_enable_nat_gateway_spoke:
type: boolean
description: "Option to enable nat gateway in Non-prod spoke"
default: true
required: true
title: Enable NAT Gateway in Non-Prod Spoke
nonprod_enable_service_gateway_spoke:
type: boolean
description: "Option to enable service gateway in Non-prod spoke"
default: true
required: true
title: Enable Service Gateway in Non-Prod Spoke
nonprod_hub_vcn_cidr_block:
type: string
description: "Vcn CIDR block in Non-Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Vcn CIDR Block in Non-Prod Hub
nonprod_hub_public_subnet_cidr_block:
type: string
description: "Public subnet CIDR block in Non-Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Public Subnet CIDR Block in Non-Prod Hub
nonprod_hub_private_subnet_cidr_block:
type: string
description: "Private subnet CIDR block in Non-Prod Hub"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Private Subnet CIDR Block in Non-Prod Hub
nonprod_spoke_vcn_cidr:
type: string
description: "Vcn CIDR block in Non-Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Vcn CIDR Block in Non-Prod Spoke
nonprod_spoke_subnet_web_cidr_block:
type: string
description: "Web subnet CIDR block in Non-Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Web Subnet CIDR Block in Non-Prod Spoke
nonprod_spoke_subnet_app_cidr_block:
type: string
description: "App subnet CIDR block in Non-Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: App Subnet CIDR Block in Non-Prod Spoke
nonprod_spoke_subnet_db_cidr_block:
type: string
description: "Database subnet CIDR block in Non-Prod Spoke"
required: true
pattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1][0-9]|[2][0-9]))$
title: Database Subnet CIDR Block in Non-Prod Spoke
prod_additional_workload_subnets_cidr_blocks:
type: array
items:
type: string
required: false
title: Additional Workload Subnets CIDR Blocks in Prod
description: "A list of subnets cidr blocks in additional workload expansion stack in Prod"
nonprod_additional_workload_subnets_cidr_blocks:
type: array
items:
type: string
required: false
title: Additional Workload Subnets CIDR Blocks in Non-Prod
description: "A list of subnets cidr blocks in additional workload expansion stack in Non-Prod"
# Network Extension Variables
enable_vpn_or_fastconnect:
type: enum
description: "Enable VPN or FASTCONNECT. Options: NONE, VPN, FASTCONNECT"
enum:
- "NONE"
- "VPN"
- "FASTCONNECT"
required: true
default: "NONE"
title: Enable VPN or Fastconnect
show_vpn_variables:
type: boolean
description: "Show VPN related variables"
required: false
title: Show VPN Related Variables
prod_enable_vpn:
type: boolean
description: "Enable VPN in prod environment"
required: false
default: false
visible: show_vpn_variables
title: Enable VPN in Prod
prod_cpe_display_name:
type: string
description: "Customer Premises Equipment name in prod. Recommendation: OCI-ELZ-CPE-[Environment]-HUB-[Region] 001"
required: false
default: ""
visible: show_vpn_variables
title: CPE Display Name in Prod
prod_cpe_ip_address:
type: string
description: "Customer Premises Equipment IP address in prod. Recommendation: OCI-ELZ-CPE-[Environment]-HUB-[Region] 001"
required: false
default: ""
visible: show_vpn_variables
title: CPE IP Address in Prod
prod_ipsec_display_name:
type: string
description: "IPsec display name in prod. Recommendation: OCI-ELZ-IPS-[Environment]-HUB-[Region] 001"
required: false
default: ""
visible: show_vpn_variables
title: IPsec Display Name in Prod
prod_ipsec_connection_static_routes:
type: array
items:
type: string
description: "IPsec Connection Static Routes in prod"
required: false
default: [""]
visible: show_vpn_variables
title: IPsec Connection Static Routes in Prod
prod_cpe_vendor:
type: number
description: "Type corresponding number as your CPE vendor: Yamaha-RTX1210 0, Other 1, Cisco-9.7.1-or-later 2, Yamaha-RTX830 3, Libreswan 4, Fortinet 5, NEC 6, Cisco-8.5+ 7, Cisco-IOS 8, WatchGuard 9, Juniper-MX 10, Juniper-SRX 11, Furukawa 12, Check_Point 13, Palo_Alto 14"
required: false
default: 0
visible: show_vpn_variables
title: CPE Vendor in Prod
prod_ipsec_routing_type:
type: string
description: "BGP dynamic routing, STATIC routing. Type BGP or STATIC"
required: false
default: STATIC
visible: show_vpn_variables
title: IPsec Routing Type in Prod
prod_tunnel_a_display_name:
type: string
description: "Tunnel A display name in prod."
required: false
default: ""
visible: show_vpn_variables
title: Tunnel A Display Name in Prod
prod_customer_bgp_asn:
type: string
description: "ASN is required and used for the tunnel's BGP session"
required: false
default: ""
visible: show_vpn_variables
title: Customer BGP ASN in Prod
prod_bgp_cust_tunnela_ip:
type: string
description: "The IP address for the CPE end of the inside tunnel interface."
required: false
default: ""
visible: show_vpn_variables
title: BGP Customer End IP in Prod
prod_bgp_oci_tunnela_ip:
type: string
description: "The IP address for the Oracle end of the inside tunnel interface."
required: false
default: ""
visible: show_vpn_variables
title: BGP Oracle End IP in Prod
prod_shared_secret:
type: string
description: "The shared secret (pre-shared key) to use for the IPSec tunnel"
required: false
default: "example"
visible: show_vpn_variables
title: IPsec Shared Secret in Prod
prod_tunnel_b_display_name:
type: string
description: "Tunnel B display name in prod"
required: false
default: ""