forked from terraform-ibm-modules/terraform-ibm-landing-zone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ibm_catalog.json
1470 lines (1470 loc) · 49.5 KB
/
ibm_catalog.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
{
"products": [
{
"name": "deploy-arch-ibm-slz-vsi",
"label": "VSI on VPC landing zone",
"product_kind": "solution",
"tags": [
"virtualservers",
"ibm_created",
"target_terraform",
"terraform",
"reference_architecture",
"solution"
],
"keywords": [
"vpc",
"slz",
"IaC",
"infrastructure as code",
"terraform",
"solution",
"vsi",
"virtual server instance"
],
"short_description": "Creates a secure infrastructure with virtual servers to run your workloads on a VPC network",
"long_description": "The VSI on VPC landing zone provides secure and customizable compute resources for running your applications and services. It creates secure and compliant Virtual Server Instances (VSI) on top of an existing Virtual Private Cloud (VPC) network.",
"offering_docs_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-overview#overview-vsi",
"offering_icon_url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/.docs/images/deploy-arch-slz-vsi-lt.svg",
"provider_name": "IBM",
"features": [
{
"description": "Creates and configures one or more virtual servers to handle workloads.\n",
"title": "Creates virtual servers for workloads"
},
{
"description": "Configures the subnets for the VSIs and specifies which subnets the instances are deployed in.\n",
"title": "Configures subnets"
},
{
"description": "Associates security groups with the VSIs to control inbound and outbound traffic to instances.\n",
"title": "Associates security groups"
},
{
"description": "Provisions and manages SSH keys for the VSIs so that you can securely administer the instances.\n",
"title": "Provisions SSH keys"
},
{
"description": "Configures existing CBR (Context-based restrictions) rules to allow traffic to flow only from the landing zone VPCs to specific cloud services.\n",
"title": "Configures CBR"
}
],
"flavors": [
{
"label": "QuickStart",
"name": "quickstart",
"install_type": "fullstack",
"working_directory": "patterns/vsi-quickstart",
"compliance": {},
"release_notes_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-secure-infrastructure-vpc-relnotes",
"configuration": [
{
"custom_config": {
"grouping": "deployment",
"original_grouping": "deployment",
"type": "json_editor"
},
"key": "override_json_string"
},
{
"custom_config": {
"config_constraints": {
"generationType": "2"
},
"grouping": "deployment",
"original_grouping": "deployment",
"type": "vpc_region"
},
"key": "region",
"required": true,
"type": "string"
}
],
"iam_permissions": [
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "appid"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "cloud-object-storage"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "hs-crypto"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "iam-identity"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "kms"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "is.vpc"
}
],
"architecture": {
"descriptions": "",
"features": [
{
"title": "Separate VPC for management",
"description": "Yes"
},
{
"title": "Separate VPC for workloads",
"description": "Yes"
},
{
"title": "Adds a virtual server instance in every VPC subnet",
"description": "Yes"
},
{
"title": "Increases security with Key Management",
"description": "Yes"
},
{
"title": "Reduces failure events by using multizone regions",
"description": "No"
},
{
"title": "Collects and stores Internet Protocol (IP) traffic information with Activity Tracker and Flow Logs",
"description": "No"
},
{
"title": "Securely connects to multiple networks with a site-to-site virtual private network",
"description": "No"
},
{
"title": "Simplifies risk management and demonstrates regulatory compliance with Financial Services",
"description": "No"
},
{
"title": "Uses an edge VPC for secure access through the public internet",
"description": "No"
},
{
"title": "Uses floating IP addresses for access through the public internet",
"description": "Yes"
}
],
"diagrams": [
{
"diagram": {
"caption": "VSI on VPC landing zone - QuickStart variation",
"url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/reference-architectures/vsi-quickstart.drawio.svg",
"type": "image/svg+xml"
},
"description": "The QuickStart variation of the VSI on VPC landing zone deployable architecture creates a fully customizable Virtual Private Cloud (VPC) environment in a single region. The solution provides virtual servers in a secure VPC for your workloads. The QuickStart variation is designed to deploy quickly for demonstration and development."
}
]
}
},
{
"label": "Standard",
"name": "standard",
"install_type": "fullstack",
"working_directory": "patterns/vsi",
"compliance": {
"authority": "scc-v3",
"profiles": [
{
"profile_name": "IBM Cloud Framework for Financial Services",
"profile_version": "1.7.0"
}
]
},
"release_notes_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-secure-infrastructure-vpc-relnotes",
"configuration": [
{
"key": "ssh_public_key",
"required": true
},
{
"hidden": true,
"key": "teleport_domain"
},
{
"hidden": true,
"key": "do_declaration_url"
},
{
"hidden": true,
"key": "template_version"
},
{
"key": "teleport_hostname",
"hidden": true
},
{
"hidden": true,
"key": "byol_license_basekey"
},
{
"hidden": true,
"key": "teleport_management_zones"
},
{
"hidden": true,
"key": "tgrefresh_url"
},
{
"hidden": true,
"key": "vpn_firewall_type"
},
{
"hidden": true,
"key": "domain"
},
{
"hidden": true,
"key": "license_sku_keyword_2"
},
{
"key": "add_edge_vpc",
"hidden": true
},
{
"hidden": true,
"key": "enable_f5_external_fip"
},
{
"hidden": true,
"key": "teleport_vsi_image_name"
},
{
"hidden": true,
"key": "tgactive_url"
},
{
"hidden": true,
"key": "license_type"
},
{
"hidden": true,
"key": "f5_instance_profile"
},
{
"hidden": true,
"key": "message_of_the_day"
},
{
"hidden": true,
"key": "tgstandby_url"
},
{
"hidden": true,
"key": "f5_image_name"
},
{
"hidden": true,
"key": "appid_name"
},
{
"hidden": true,
"key": "license_password"
},
{
"hidden": true,
"key": "provision_teleport_in_f5"
},
{
"hidden": true,
"key": "https_key"
},
{
"hidden": true,
"key": "https_cert"
},
{
"hidden": true,
"key": "license_username"
},
{
"hidden": true,
"key": "teleport_license"
},
{
"hidden": true,
"key": "enable_f5_management_fip"
},
{
"hidden": true,
"key": "license_pool"
},
{
"hidden": true,
"key": "license_host"
},
{
"hidden": true,
"key": "hostname"
},
{
"hidden": true,
"key": "use_existing_appid"
},
{
"custom_config": {
"grouping": "deployment",
"original_grouping": "deployment",
"type": "json_editor"
},
"key": "override_json_string"
},
{
"hidden": true,
"key": "tmos_admin_password",
"type": "password"
},
{
"hidden": true,
"key": "license_sku_keyword_1"
},
{
"hidden": true,
"key": "teleport_version"
},
{
"custom_config": {
"config_constraints": {
"generationType": "2"
},
"grouping": "deployment",
"original_grouping": "deployment",
"type": "vpc_region"
},
"key": "region",
"required": true
},
{
"key": "override",
"hidden": true
},
{
"hidden": true,
"key": "teleport_admin_email"
},
{
"hidden": true,
"key": "create_f5_network_on_management_vpc"
},
{
"hidden": true,
"key": "teleport_instance_profile"
},
{
"hidden": true,
"key": "license_unit_of_measure"
},
{
"hidden": true,
"key": "app_id"
},
{
"hidden": true,
"key": "appid_resource_group"
},
{
"hidden": true,
"key": "phone_home_url"
},
{
"hidden": true,
"key": "ts_declaration_url"
},
{
"hidden": true,
"key": "as3_declaration_url"
},
{
"hidden": true,
"key": "template_source"
}
],
"iam_permissions": [
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "appid"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "cloud-object-storage"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "hs-crypto"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "iam-identity"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "kms"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "is.vpc"
}
],
"architecture": {
"descriptions": "",
"features": [
{
"title": "Separate VPC for management",
"description": "Yes"
},
{
"title": "Separate VPC for workloads",
"description": "Yes"
},
{
"title": "Virtual Server Instances for every subnet",
"description": "Yes"
},
{
"title": "Increases security with Key Management",
"description": "Yes"
},
{
"title": "Reduces failure events by using multizone regions",
"description": "Yes"
},
{
"title": "Collects and stores Internet Protocol (IP) traffic information with Activity Tracker and Flow Logs",
"description": "Yes"
},
{
"title": "Securely connects to multiple networks with a site-to-site virtual private network",
"description": "Yes"
},
{
"title": "Simplifies risk management and demonstrates regulatory compliance with Financial Services",
"description": "Yes"
},
{
"title": "Uses an edge VPC for secure access through the public internet",
"description": "Yes, if enabled"
},
{
"title": "Uses floating IP addresses for access through the public internet",
"description": "No"
},
{
"description": "Configures existing CBR (Context-based restrictions) rules to allow traffic to flow only from the landing zone VPCs to specific cloud services.\n",
"title": "Configures CBR"
}
],
"diagrams": [
{
"diagram": {
"caption": "VSI on VPC landing zone - Standard variation",
"url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/reference-architectures/vsi-vsi.drawio.svg",
"type": "image/svg+xml"
},
"description": "The Standard variation of the VSI on VPC landing zone deployable architecture is based on the IBM Cloud for Financial Services reference architecture. The architecture creates a customizable and secure infrastructure, with virtual servers, to run your workloads with a Virtual Private Cloud (VPC) in multizone regions."
}
]
}
},
{
"label": "Existing VPC",
"name": "existing-vpc",
"install_type": "extension",
"working_directory": "patterns/vsi-extension",
"dependencies": [
{
"flavors": [
"standard"
],
"id": "95fccffc-ae3b-42df-b6d9-80be5914d852-global",
"name": "deploy-arch-ibm-slz-ocp",
"version": ">=1.0.0",
"optional": false
},
{
"flavors": [
"standard"
],
"id": "9fc0fa64-27af-4fed-9dce-47b3640ba739-global",
"name": "deploy-arch-ibm-slz-vpc",
"version": ">=1.0.0"
}
],
"compliance": {
"authority": "scc-v3",
"profiles": [
{
"profile_name": "IBM Cloud Framework for Financial Services",
"profile_version": "1.6.0"
}
]
},
"configuration": [
{
"key": "ssh_public_key",
"required": true
},
{
"custom_config": {
"config_constraints": {
"generationType": "2"
},
"grouping": "deployment",
"original_grouping": "deployment",
"type": "vpc_region"
},
"key": "region",
"required": true
}
],
"iam_permissions": [
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "is.vpc"
}
],
"architecture": {
"descriptions": "This architecture creates virtual server instances (VSI) in some or all of the subnets of one VPC of an existing landing zone deployable architecture. To create VSIs in multiple VPCs, deploy the extension once for each VPC.\r\n\r\n## Before you begin\r\n\r\n- You must have either the [VPC landing zone](https:\/\/cloud.ibm.com\/catalog\/architecture\/deploy-arch-ibm-slz-vpc-9fc0fa64-27af-4fed-9dce-47b3640ba739-global) or [Red Hat OpenShift Container Platform on VPC landing zone](https:\/\/cloud.ibm.com\/catalog\/architecture\/deploy-arch-ibm-slz-ocp-95fccffc-ae3b-42df-b6d9-80be5914d852-global) deployable architecture deployed.\r\n- You need an authorization policy that grants access between block storage and the KMS. The policy exists if you set the `skip_kms_block_storage_s2s_auth_policy` input variable to `false` (the default value) in your existing landing zone deployable architecture.\r\n- You need the VPC ID, subnet names, and boot volume encryption key from your existing landing zone deployable architecture. For information about finding these values, see [Adding a VSI to your VPC landing zone deployable architecture](https:\/\/cloud.ibm.com\/docs\/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-ext-with-vsi).",
"features": [
{
"title": "Adds a virtual server instance in every VPC subnet",
"description": "Yes"
},
{
"title": "Increases security with Key Management",
"description": "Yes"
},
{
"title": "Simplifies risk management and demonstrates regulatory compliance with Financial Services",
"description": "Yes"
},
{
"title": "Uses Floating IP address for access through the public internet",
"description": "No"
}
],
"diagrams": [
{
"diagram": {
"caption": "VSI on existing VPC",
"url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/reference-architectures/vsi-vsi.drawio.svg",
"type": "image/svg+xml"
},
"description": "The extension to an existing VPC deployable architecture is based on the IBM Cloud for Financial Services reference architecture. The architecture creates a customizable and secure infrastructure with virtual servers to run your workloads with IBM Cloud VPC in multizone regions."
}
]
}
}
]
},
{
"name": "deploy-arch-ibm-slz-vpc",
"label": "VPC landing zone",
"product_kind": "solution",
"tags": [
"network_vpc",
"ibm_created",
"target_terraform",
"terraform",
"reference_architecture",
"solution"
],
"keywords": [
"vpc",
"slz",
"IaC",
"Infrastructure",
"terraform",
"solution"
],
"short_description": "Deploys a secure VPC network without compute resources",
"long_description": "The VPC landing zone deployable architecture deploys a simple Virtual Private Cloud (VPC) infrastructure without any compute resources, such as Virtual Server Instances (VSI) or Red Hat OpenShift clusters. You can use this architecture as a base on which to deploy compute resources. Or you can deploy those resources by using the other landing zone deployable architectures: VSI on VPC landing zone and Red Hat OpenShift Container Platform on VPC landing zone.",
"offering_docs_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-overview#overview-vpc",
"offering_icon_url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/.docs/images/deploy-arch-slz-vpc-lt.svg",
"provider_name": "IBM",
"features": [
{
"description": "Creates a VPC-based topology based on two VPCs, by default.\n",
"title": "Creates Virtual Private Clouds"
},
{
"description": "Defines multiple subnets in the VPC to define IP ranges and organize resources within the network.\n",
"title": "Configures subnets"
},
{
"description": "The transit gateway connects the two default VPCs that the deployable architecture creates.\n",
"title": "Creates a transit gateway"
},
{
"description": "IBM Cloud Object Storage is used for Flow Logs and Activity Tracker, which enhance the observability and auditing of your infrastructure.\n",
"title": "Integrates Flow Logs and Activity tracking"
},
{
"description": "Isolates and speeds traffic to the public internet by using an edge VPC in a specific location, if enabled.\n",
"title": "Supports edge networking"
}
],
"flavors": [
{
"label": "Standard",
"name": "standard",
"install_type": "fullstack",
"working_directory": "patterns/vpc",
"compliance": {
"authority": "scc-v3",
"profiles": [
{
"profile_name": "IBM Cloud Framework for Financial Services",
"profile_version": "1.7.0"
}
]
},
"release_notes_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-secure-infrastructure-vpc-relnotes",
"configuration": [
{
"custom_config": {
"grouping": "deployment",
"original_grouping": "deployment",
"type": "json_editor"
},
"key": "override_json_string"
},
{
"custom_config": {
"config_constraints": {
"generationType": "2"
},
"grouping": "deployment",
"original_grouping": "deployment",
"type": "vpc_region"
},
"key": "region",
"required": true
},
{
"key": "add_edge_vpc",
"hidden": true
},
{
"key": "teleport_management_zones",
"hidden": true
},
{
"key": "create_f5_network_on_management_vpc",
"hidden": true
},
{
"key": "provision_teleport_in_f5",
"hidden": true
},
{
"key": "vpn_firewall_type",
"hidden": true
},
{
"key": "ssh_public_key",
"hidden": true
},
{
"key": "f5_image_name",
"hidden": true
},
{
"key": "f5_instance_profile",
"hidden": true
},
{
"key": "hostname",
"hidden": true
},
{
"key": "domain",
"hidden": true
},
{
"key": "tmos_admin_password",
"hidden": true
},
{
"key": "license_type",
"hidden": true
},
{
"key": "byol_license_basekey",
"hidden": true
},
{
"key": "license_host",
"hidden": true
},
{
"key": "license_username",
"hidden": true
},
{
"key": "license_password",
"hidden": true
},
{
"key": "license_pool",
"hidden": true
},
{
"key": "license_sku_keyword_1",
"hidden": true
},
{
"key": "license_sku_keyword_2",
"hidden": true
},
{
"key": "license_unit_of_measure",
"hidden": true
},
{
"key": "do_declaration_url",
"hidden": true
},
{
"key": "as3_declaration_url",
"hidden": true
},
{
"key": "ts_declaration_url",
"hidden": true
},
{
"key": "phone_home_url",
"hidden": true
},
{
"key": "template_source",
"hidden": true
},
{
"key": "template_version",
"hidden": true
},
{
"key": "app_id",
"hidden": true
},
{
"key": "tgactive_url",
"hidden": true
},
{
"key": "tgstandby_url",
"hidden": true
},
{
"key": "tgrefresh_url",
"hidden": true
},
{
"key": "enable_f5_management_fip",
"hidden": true
},
{
"key": "enable_f5_external_fip",
"hidden": true
},
{
"key": "use_existing_appid",
"hidden": true
},
{
"key": "appid_name",
"hidden": true
},
{
"key": "appid_resource_group",
"hidden": true
},
{
"key": "teleport_instance_profile",
"hidden": true
},
{
"key": "teleport_vsi_image_name",
"hidden": true
},
{
"key": "teleport_license",
"hidden": true
},
{
"key": "https_cert",
"hidden": true
},
{
"key": "https_key",
"hidden": true
},
{
"key": "teleport_hostname",
"hidden": true
},
{
"key": "teleport_domain",
"hidden": true
},
{
"key": "teleport_version",
"hidden": true
},
{
"key": "message_of_the_day",
"hidden": true
},
{
"key": "teleport_admin_email",
"hidden": true
},
{
"key": "override",
"hidden": true
}
],
"iam_permissions": [
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "appid"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "cloud-object-storage"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "hs-crypto"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "iam-identity"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager"
],
"service_name": "kms"
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Administrator"
],
"service_name": "is.vpc"
}
],
"architecture": {
"descriptions": "",
"features": [
{
"title": "Separate VPC for management",
"description": "Yes"
},
{
"title": "Separate VPC for workloads",
"description": "Yes"
},
{
"title": "Increases security with Key Management",
"description": "Yes"
},
{
"title": "Reduces failure events by using multizone regions",
"description": "Yes"
},
{
"title": "Collects and stores Internet Protocol (IP) traffic information with Activity Tracker and Flow Logs",
"description": "Yes"
},
{
"title": "Securely connects to multiple networks with a site-to-site virtual private network",
"description": "Yes"
},
{
"title": "Simplifies risk management and demonstrates regulatory compliance with Financial Services",
"description": "Yes"
},
{
"title": "Uses an edge VPC for secure access through the public internet",
"description": "Yes, if enabled"
},
{
"title": "Uses Floating IP address for access through the public internet",
"description": "No"
},
{
"description": "Configures existing CBR (Context-based restrictions) rules to allow traffic to flow only from the landing zone VPCs to specific cloud services.\n",
"title": "Configures CBR"
}
],
"diagrams": [
{
"diagram": {
"caption": "VPC landing zone - Standard variation",
"url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/reference-architectures/vpc.drawio.svg",
"type": "image/svg+xml"
},
"description": "The Standard variation of the VPC landing zone deployable architecture deploys a simple Virtual Private Cloud (VPC) infrastructure without any compute resources. You can use this architecture as a base on which to deploy compute resources. The Standard variation uses two Virtual Private Clouds (VPC) - a Management VPC and a Workload VPC - to manage the environment and the deployed workload. Each VPC is a multi-zoned, multi-subnet implementation that keeps your workloads secure. A transit gateway connects the VPCs to each other and Virtual Private Endpoints are used connect to IBM Cloud services."
}
]
}
}
]
},
{
"name": "deploy-arch-ibm-slz-ocp",
"label": "Red Hat OpenShift Container Platform on VPC landing zone",
"product_kind": "solution",
"tags": [
"compute",
"ibm_created",
"target_terraform",
"terraform",
"reference_architecture",
"solution"
],
"keywords": [
"vpc",
"slz",
"IaC",
"infrastructure as code",
"terraform",
"solution",
"Red Hat OpenShift Container Platform",
"OCP"
],
"short_description": "Creates Red Hat OpenShift workload clusters on a secure VPC network",
"long_description": "The Red Hat OpenShift Container Platform on VPC landing zone provides the tools to deploy a Red Hat OpenShift Container Platform cluster in a single Virtual Private Cloud (VPC) network. The VPC is a multi-zoned, multi-subnet implementation that keeps your VPC secure and highly available.\n",
"offering_docs_url": "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-overview#overview-ocp",
"offering_icon_url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-landing-zone/main/.docs/images/deploy-arch-slz-ocp-lt.svg",
"provider_name": "IBM",
"features": [
{
"description": "Creates and configures one or more clusters to handle workloads. You can specify the version and cluster size.\n",
"title": "Creates Open Shift Container Platform clusters for workloads"
},
{
"description": "With worker pools, you can group and manage worker nodes with similar configurations, such as compute resources and availability zones.\n",
"title": "Creates worker pools"
},
{
"description": "Configures the subnets for the cluster, and specifies the subnets to deploy the worker nodes in.\n",
"title": "Configures subnets for containers"
},
{
"description": "Configures private and public endpoints for the cluster.\n",
"title": "Supports private and public endpoints"
},
{