generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ibm_catalog.json
4037 lines (4037 loc) · 269 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": [
{
"label": "DevSecOps Application Lifecycle Management",
"name": "deploy-arch-ibm-devsecops-alm",
"product_kind": "solution",
"tags": [
"enterprise_app",
"ibm_created"
],
"keywords": [
"DevSecOps Toolchain Compliance",
"DevOps",
"DevOps Pipeline",
"Pipelines",
"Terraform",
"Security",
"Compliance",
"DevSecOps Foundation for Apps"
],
"short_description": "DevSecOps provides a set of predefined continuous integration, continuous deployment and continuous compliance toolchain templates.",
"long_description": "This deployable architecture provides tools to securely deploy application code using DevSecOps pipelines. Out of the box, these pipelines use popular scanning tools such as SonarQube, Gosec, OWASP Zap (dynamic scan), any unit test framework, and GPG for image signing. Please refer to the [Deployment guide](https://cloud.ibm.com/docs/devsecops-alm?topic=devsecops-alm-devsecops-alm-planning-req) to understand the requirements beforehand.\n",
"provider_name": "OTC CD SETUP",
"offering_docs_url": "https://cloud.ibm.com/docs/devsecops-alm?topic=devsecops-alm-devsecops-alm-ops-req",
"offering_icon_url": "https://globalcatalog.cloud.ibm.com/api/v1/1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc/artifacts/terraform.svg",
"features": [
{
"title": "DevSecOps ",
"description": "A complete end to end GitOps based reference architecture for managing the security posture of your application."
}
],
"flavors": [
{
"label": "Deploy to Code Engine",
"name": "devsecopsce",
"index": 2,
"working_directory": "solutions/code-engine",
"compliance": {
"authority": "scc-v3",
"controls": [
{
"profile": {
"id": "",
"name": "IBM Cloud Framework for Financial Services",
"version": "1.6.0"
},
"names": [
"SA-3(a)",
"CM-6(d)",
"CM-7(b)",
"RA-5(3)",
"SA-3(d)",
"SI-10",
"SI-7",
"SA-10(d)",
"CM-3(g)",
"CM-8(1)",
"SA-15(a)",
"CM-4",
"CM-2(3)",
"SI-2(d)",
"CM-4(1)",
"CM-9(c)",
"CM-9(a)",
"CM-2(1)(a)",
"CM-2(1)(b)",
"CM-3(b)",
"RA-5(b)",
"SI-2(2)",
"RA-5(2)",
"SA-10(1)",
"SA-10(e)",
"CM-6(1)",
"CM-2(2)",
"SA-10(c)",
"CM-2",
"SA-8",
"CM-6(c)",
"CM-2(1)(c)",
"CM-8(b)",
"CM-3(f)",
"CM-8(2)",
"RA-5(1)",
"SI-2(b)",
"CM-6(b)",
"CM-9(d)",
"SI-2(c)",
"CM-8(a)",
"CM-3(d)",
"CM-9(b)",
"SA-10(b)",
"SA-10(a)",
"CM-3(c)",
"SI-2(a)",
"CM-10(1)",
"RA-5(a)",
"CM-6(a)",
"RA-5(c)",
"RA-5(d)",
"CM-7(1)(a)",
"CM-3(2)",
"CM-5",
"CM-3(e)",
"CM-3(a)"
]
}
]
},
"architecture": {
"features": [
{
"title": "Application",
"description": "Deploy a sample application to Code Engine using DevSecOps best practices."
}
],
"diagrams": [
{
"diagram": {
"url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-devsecops-alm/main/reference-architectures/diagram-deploy-arch-ibm-devsecops-alm-diagram.svg",
"caption": "DevSecOps Toolchains",
"type": "image/svg+xml",
"thumbnail_url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-devsecops-alm/main/reference-architectures/diagram-deploy-arch-ibm-devsecops-alm-diagram.svg"
},
"description": "The DevSecOps Application Lifecycle Management deployable architecture consists of three Continuous Delivery Toolchains, one each for development (Continuous Integration), production deployment (Continuous Deployment), and ongoing compliance validation for the deployed app (Continuous Compliance). Together they enable secure and compliant application delivery on IBM Cloud."
}
]
},
"configuration": [
{
"key": "toolchain_name",
"type": "string",
"default_value": "DevSecOps",
"description": "This variable specifies the root name for the CI, CD and CC toolchain names. A fixed suffix will automatically be appended. Setting `DevSecOps` will generate toolchains with the names `DevSecOps-CI-Toolchain`, `DevSecOps-CD-Toolchain` and `DevSecOps-CC-Toolchain`. The full name of each toolchain can be set independently using `ci_toolchain_name`, `cd_toolchain_name`, and `cc_toolchain_name`.",
"required": true
},
{
"key": "toolchain_region",
"type": "string",
"default_value": "us-south",
"description": "The region identifier that will be used, by default, for all resource creation and service instance lookup. This can be overridden on a per resource/service basis.",
"display_name": "Region",
"required": true,
"custom_config": {
"type": "region",
"grouping": "deployment",
"original_grouping": "deployment",
"config_constraints": {
"filterString": "id:au-syd,br-sao,ca-tor,eu-de,eu-es,eu-gb,jp-osa,jp-tok,us-east,us-south",
"showKinds": [
"region",
"zone",
"dc",
"location"
]
}
}
},
{
"key": "toolchain_resource_group",
"type": "string",
"default_value": "Default",
"description": "The resource group that will be used, by default, for all resource creation and service instance lookups. This can be overridden on a per resource/service basis.",
"required": true
},
{
"key": "ibmcloud_api_key",
"type": "password",
"description": "The API key used to create the toolchains. (See deployment guide.)",
"required": true
},
{
"key": "ci_code_engine_project",
"type": "string",
"default_value": "Sample_CI_Project",
"description": "The name of the Code Engine project to use.",
"required": true
},
{
"key": "cd_code_engine_project",
"type": "string",
"default_value": "Sample_CD_Project",
"description": "The name of the Code Engine project to use for the CD pipeline promoted code. The project is created if it does not already exist.",
"required": true
},
{
"key": "registry_namespace",
"type": "string",
"default_value": "",
"description": "A unique namespace within the IBM Cloud Container Registry region where the application image is stored.",
"required": true
},
{
"key": "sm_location",
"type": "string",
"default_value": "us-south",
"description": "The region location of the Secrets Manager instance. This applies to the CI, CD and CC Secret Manager integrations.",
"display_name": "Region",
"required": true,
"custom_config": {
"type": "region",
"grouping": "deployment",
"original_grouping": "deployment",
"config_constraints": {
"filterString": "id:au-syd,br-sao,ca-tor,eu-de,eu-es,eu-gb,jp-osa,jp-tok,us-east,us-south",
"showKinds": [
"region",
"zone",
"dc",
"location"
]
}
}
},
{
"key": "sm_name",
"type": "string",
"default_value": "Secrets Manager",
"description": "The name of an existing Secret Managers instance. This applies to the CI, CD and CC Secret Manager integrations.",
"required": true
},
{
"key": "sm_resource_group",
"type": "string",
"default_value": "Default",
"description": "The name of the existing resource group containing the Secrets Manager instance for your secrets.. This applies to the CI, CD and CC Secret Manager integrations.",
"required": true
},
{
"key": "sm_secret_group",
"type": "string",
"default_value": "Default",
"description": "The Secrets Manager secret group containing the secrets for the DevSecOps pipelines. This applies to the CI, CD and CC Secret Manager integrations.",
"required": true
},
{
"key": "cc_pipeline_properties",
"type": "string",
"default_value": "[\n {\n \"pipeline_id\": \"cc\",\n \"properties\": [\n {\n \"name\": \"cos-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-bucket-name\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-endpoint\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cra-bom-generate\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-deploy-analysis\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-vulnerability-scan\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"doi-environment\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-toolchain-id\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"environment-tag\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"event-notifications\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"git-token\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-auto-close\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"opt-in-cra-auto-remediation\",\n \"type\": \"text\",\n \"value\": \"true\"\n },\n\n {\n \"name\": \"opt-in-cra-auto-remediation-enabled-repos\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-cra-auto-remediation-force\",\n \"type\": \"text\",\n \"value\": \"true\"\n },\n {\n \"name\": \"opt-in-dynamic-api-scan\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-dynamic-scan\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-dynamic-ui-scan\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-gosec\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-sonar\",\n \"type\": \"text\",\n \"value\": \"true\"\n },\n {\n \"name\": \"peer-review-compliance\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"pipeline-config\",\n \"type\": \"text\",\n \"value\": \".pipeline-config.yaml\"\n },\n {\n \"name\": \"pipeline-config-branch\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"pipeline-debug\",\n \"type\": \"single_select\",\n \"value\": \"0\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"slack-notifications\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"sonarqube-config\",\n \"type\": \"text\",\n \"value\": \"default\"\n }\n ]\n }\n]\n",
"description": "This JSON represents the pipeline properties belonging to the CC pipeline in the CC toolchain. Each element in the JSON represents a seperate pipeline property. Three attributes are required to create a property. These are the `name` field (how the name appears in the pipeline properties), the `type` (text, secure and enum) and then the `value`. Do not put secrets directly into JSON for the `secure` type, instead the value for a `secret` type should be a CRN to a secret in the configured secrets provider or a secret reference to a secret in the configured secrets provider.",
"display_name": "JSON",
"required": true,
"custom_config": {
"type": "json_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "cd_pipeline_properties",
"type": "string",
"default_value": "[\n {\n \"pipeline_id\": \"cd\",\n \"properties\": [\n {\n \"name\": \"app-concurrency\",\n \"type\": \"text\",\n \"value\": \"100\"\n },\n {\n \"name\": \"app-deployment-timeout\",\n \"type\": \"text\",\n \"value\": \"300\"\n },\n {\n \"name\": \"app-max-scale\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"app-min-scale\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"app-port\",\n \"type\": \"text\",\n \"value\": \"8080\"\n },\n {\n \"name\": \"app-visibility\",\n \"type\": \"text\",\n \"value\": \"public\"\n },\n {\n \"name\": \"change-request-id\",\n \"type\": \"text\",\n \"value\": \"notAvailable\"\n },\n {\n \"name\": \"code-engine-binding-resource-group\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-deployment-type\",\n \"type\": \"text\",\n \"value\": \"application\"\n },\n {\n \"name\": \"code-engine-project\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-region\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-resource-group\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-signing-certificate\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-bucket-name\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-endpoint\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cpu\",\n \"type\": \"text\",\n \"value\": \"0.25\"\n },\n {\n \"name\": \"doi-environment\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-toolchain-id\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"emergency-label\",\n \"type\": \"text\",\n \"value\": \"EMERGENCY\"\n },\n {\n \"name\": \"env-from-configmaps\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"env-from-secrets\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"ephemeral-storage\",\n \"type\": \"text\",\n \"value\": \"0.4G\"\n },\n {\n \"name\": \"event-notifications\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"force-redeploy\",\n \"type\": \"single_select\",\n \"value\": \"false\",\n \"enum\": \"[false,true]\"\n },\n {\n \"name\": \"git-token\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"job-instances\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"job-maxexecutiontime\",\n \"type\": \"text\",\n \"value\": \"7200\"\n },\n {\n \"name\": \"job-retrylimit\",\n \"type\": \"text\",\n \"value\": \"3\"\n },\n {\n \"name\": \"memory\",\n \"type\": \"text\",\n \"value\": \"0.5G\"\n },\n {\n \"name\": \"merge-cra-sbom\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"peer-review-collection\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"peer-review-compliance\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"pipeline-config\",\n \"type\": \"text\",\n \"value\": \".pipeline-config.yaml\"\n },\n {\n \"name\": \"pipeline-config-branch\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"pipeline-debug\",\n \"type\": \"single_select\",\n \"value\": \"0\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"pre-prod-evidence-collection\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"region\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"remove-unspecified-references-to-configuration-resources\",\n \"type\": \"text\",\n \"value\": \"false\"\n },\n {\n \"name\": \"service-bindings\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"slack-notifications\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"source-environment\",\n \"type\": \"text\",\n \"value\": \"master\"\n },\n {\n \"name\": \"target-environment\",\n \"type\": \"text\",\n \"value\": \"prod\"\n },\n {\n \"name\": \"target-environment-detail\",\n \"type\": \"text\",\n \"value\": \"Production target environment\"\n },\n {\n \"name\": \"target-environment-purpose\",\n \"type\": \"text\",\n \"value\": \"production\"\n },\n {\n \"name\": \"version\",\n \"type\": \"text\",\n \"value\": \"v1\"\n }\n ]\n }\n ]\n",
"description": "This JSON represents the pipeline properties belonging to the CD pipeline in the CD toolchain. Each element in the JSON represents a seperate pipeline property. Three attributes are required to create a property. These are the `name` field (how the name appears in the pipeline properties), the `type` (text, secure and enum) and then the `value`. Do not put secrets directly into JSON for the `secure` type, instead the value for a `secret` type should be a CRN to a secret in the configured secrets provider or a secret reference to a secret in the configured secrets provider.",
"display_name": "JSON",
"required": true,
"custom_config": {
"type": "json_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "ci_pipeline_properties",
"type": "string",
"default_value": "[\n {\n \"pipeline_id\": \"ci\",\n \"properties\": [\n {\n \"name\": \"app-concurrency\",\n \"type\": \"text\",\n \"value\": \"100\"\n },\n {\n \"name\": \"app-deployment-timeout\",\n \"type\": \"text\",\n \"value\": \"300\"\n },\n {\n \"name\": \"app-max-scale\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"app-min-scale\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"app-port\",\n \"type\": \"text\",\n \"value\": \"8080\"\n },\n {\n \"name\": \"app-visibility\",\n \"type\": \"text\",\n \"value\": \"public\"\n },\n {\n \"name\": \"code-engine-binding-resource-group\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-build-size\",\n \"type\": \"text\",\n \"value\": \"large\"\n },\n {\n \"name\": \"code-engine-build-strategy\",\n \"type\": \"text\",\n \"value\": \"dockerfile\"\n },\n {\n \"name\": \"code-engine-build-timeout\",\n \"type\": \"text\",\n \"value\": \"1200\"\n },\n {\n \"name\": \"code-engine-build-use-native-docker\",\n \"type\": \"text\",\n \"value\": \"false\"\n },\n {\n \"name\": \"code-engine-deployment-type\",\n \"type\": \"text\",\n \"value\": \"application\"\n },\n {\n \"name\": \"code-engine-project\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-region\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-resource-group\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"code-engine-wait-timeout\",\n \"type\": \"text\",\n \"value\": \"1300\"\n },\n {\n \"name\": \"context-dir\",\n \"type\": \"text\",\n \"value\": \"dockerfile-strategy\"\n },\n {\n \"name\": \"cos-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-bucket-name\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cos-endpoint\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"cpu\",\n \"type\": \"text\",\n \"value\": \"0.25\"\n },\n {\n \"name\": \"cra-bom-generate\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-deploy-analysis\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-generate-cyclonedx-format\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"cra-vulnerability-scan\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"custom_image_tag\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"dev-region\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"dev-resource-group\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-environment\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"doi-toolchain-id\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"env-from-configmaps\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"env-from-secrets\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"ephemeral-storage\",\n \"type\": \"text\",\n \"value\": \"0.4G\"\n },\n {\n \"name\": \"event-notifications\",\n \"type\": \"text\",\n \"value\": \"0\"\n },\n {\n \"name\": \"git-token\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"image-name\",\n \"type\": \"text\",\n \"value\": \"code-engine-compliance-app\"\n },\n {\n \"name\": \"job-instances\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"job-maxexecutiontime\",\n \"type\": \"text\",\n \"value\": \"7200\"\n },\n {\n \"name\": \"job-retrylimit\",\n \"type\": \"text\",\n \"value\": \"3\"\n },\n {\n \"name\": \"memory\",\n \"type\": \"text\",\n \"value\": \"0.5G\"\n },\n {\n \"name\": \"opt-in-dynamic-api-scan\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"opt-in-dynamic-scan\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"opt-in-dynamic-ui-scan\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"opt-in-gosec\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"opt-in-sonar\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"peer-review-compliance\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"pipeline-config\",\n \"type\": \"text\",\n \"value\": \".pipeline-config.yaml\"\n },\n {\n \"name\": \"pipeline-config-branch\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"pipeline-debug\",\n \"type\": \"single_select\",\n \"value\": \"0\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"print-code-signing-certificate\",\n \"type\": \"text\",\n \"value\": \"1\"\n },\n {\n \"name\": \"registry-domain\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"registry-namespace\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"registry-region\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"remove-unspecified-references-to-configuration-resources\",\n \"type\": \"text\",\n \"value\": \"false\"\n },\n {\n \"name\": \"service-bindings\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"signing-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"slack-notifications\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"sonarqube-config\",\n \"type\": \"text\",\n \"value\": \"default\"\n },\n {\n \"name\": \"source\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"version\",\n \"type\": \"text\",\n \"value\": \"v1\"\n }\n ]\n },\n {\n \"pipeline_id\": \"pr\",\n \"properties\": [\n {\n \"name\": \"cra-bom-generate\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-deploy-analysis\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"cra-vulnerability-scan\",\n \"type\": \"single_select\",\n \"value\": \"1\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"git-token\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"ibmcloud-api-key\",\n \"type\": \"secure\",\n \"value\": \"\"\n },\n {\n \"name\": \"pipeline-config\",\n \"type\": \"text\",\n \"value\": \".pipeline-config.yaml\"\n },\n {\n \"name\": \"pipeline-config-branch\",\n \"type\": \"text\",\n \"value\": \"\"\n },\n {\n \"name\": \"pipeline-debug\",\n \"type\": \"single_select\",\n \"value\": \"0\",\n \"enum\": \"[0,1]\"\n },\n {\n \"name\": \"slack-notifications\",\n \"type\": \"text\",\n \"value\": \"\"\n }\n ]\n }\n]\n",
"description": "This JSON represents the pipeline properties belonging to the both the CI and PR pipelines in the CI toolchain. Each element in the JSON represents a seperate pipeline property. Three attributes are required to create a property. These are the `name` field (how the name appears in the pipeline properties), the `type` (text, secure and enum) and then the `value`. Do not put secrets directly into JSON for the `secure` type, instead the value for a `secret` type should be a CRN to a secret in the configured secrets provider or a secret reference to a secret in the configured secrets provider.",
"display_name": "JSON",
"required": true,
"custom_config": {
"type": "json_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "repo_git_token_secret_name",
"type": "string",
"default_value": "",
"description": "Name of the Git token secret in the secret provider. Specifying a secret name for the Git Token automatically sets the authentication type to `pat`.",
"required": false
},
{
"key": "repo_group",
"type": "string",
"default_value": "",
"description": "Specify the Git user or group for your application. This must be set if the repository authentication type is `pat` (personal access token).",
"required": false
},
{
"key": "repo_git_provider",
"type": "string",
"default_value": "",
"description": "By default this gets set as 'hostedgit', else set to 'githubconsolidated' for GitHub repositories or `gitlab` for GitLab. Applies to all the default DevSecOps repositories, except the `Compliance Pipelines` repository that get created at the time of running the DA.",
"required": false
},
{
"key": "repo_git_id",
"type": "string",
"default_value": "",
"description": "Set this value to `github` for github.com, `gitlabcustom` for GitLab or to the ID of a custom GitHub Enterprise server.",
"required": false
},
{
"key": "repo_git_token_secret_name",
"type": "string",
"default_value": "",
"description": "Name of the Git token secret in the secret provider used for accessing the repositories created by the DA.",
"required": false
},
{
"key": "repo_title",
"type": "string",
"default_value": "",
"description": "(Optional) The title of the server. e.g. My Git Enterprise Server.",
"required": false
},
{
"key": "repo_root_url",
"type": "string",
"default_value": "",
"description": "(Optional) The Root URL of the server. e.g. https://git.example.com.",
"required": false
},
{
"key": "repo_blind_connection",
"type": "string",
"default_value": "false",
"description": "Setting this value to `true` means the server is not addressable on the public internet. IBM Cloud will not be able to validate the connection details you provide. Certain functionality that requires API access to the git server will be disabled. Delivery pipeline will only work using a private worker that has network access to the git server.",
"required": false
},
{
"key": "create_git_triggers",
"type": "string",
"default_value": "true",
"description": "Set to `true` to create the Git triggers used by the DevSecOps pipelines.",
"required": false
},
{
"key": "create_triggers",
"type": "string",
"default_value": "true",
"description": "Set to `true` to create the triggers used by the DevSecOps pipelines.",
"required": false
},
{
"key": "add_pipeline_definitions",
"type": "string",
"default_value": "true",
"description": "Set to `true` to add the compliance pipelines definitions to the DevSecOps pipelines.",
"required": false
},
{
"key": "app_repo_branch",
"type": "string",
"default_value": "main",
"description": "This is the repository branch used by the default sample application. Alternatively if `app_repo_existing_url` is provided, then the branch must reflect the default branch for that repository. Typically these branches are `main` or `master`.",
"required": true
},
{
"key": "app_repo_existing_url",
"type": "string",
"default_value": "__NOTSET__",
"description": "Bring your own existing application repository by providing the URL. This will create an integration for your application repository instead of cloning the default sample. Repositories existing in a different org will require the use of Git token. See `app_repo_git_token_secret_name` under optional variables. ",
"required": true
},
{
"key": "cd_deployment_repo_existing_url",
"type": "string",
"default_value": "",
"description": "Override to bring your own existing deployment repository URL, which is used directly instead of cloning the default deployment sample.",
"required": false
},
{
"key": "change_management_existing_url",
"type": "string",
"default_value": "",
"description": "Override to bring your own existing change management repository URL, which is used directly instead of cloning the default change management repository.",
"required": false
},
{
"key": "evidence_repo_existing_url",
"type": "string",
"default_value": "",
"description": "Set to use an existing evidence repository.",
"required": false
},
{
"key": "inventory_repo_existing_url",
"type": "string",
"default_value": "",
"description": "Set to use an existing inventory repository.",
"required": false
},
{
"key": "issues_repo_existing_url",
"type": "string",
"default_value": "",
"description": "Set to use an existing issues repository.",
"required": false
},
{
"key": "compliance_pipeline_repo_name",
"type": "string",
"default_value": "",
"description": "Sets the name for the compliance pipelines repository if cloned. The expected behaviour is to link to an existing compliance-pipelines repository.",
"required": false
},
{
"key": "compliance_pipeline_repo_use_group_settings",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to apply group level repository settings to the compliance pipeline repository. See `repo_git_provider` as an example.",
"required": false
},
{
"key": "compliance_pipeline_repo_title",
"type": "string",
"default_value": "",
"description": "(Optional) The title of the server. e.g. My Git Enterprise Server.",
"required": false
},
{
"key": "compliance_pipeline_repo_root_url",
"type": "string",
"default_value": "",
"description": "(Optional) The Root URL of the server. e.g. https://git.example.com.",
"required": false
},
{
"key": "compliance_pipeline_repo_blind_connection",
"type": "string",
"default_value": "false",
"description": "Setting this value to `true` means the server is not addressable on the public internet. IBM Cloud will not be able to validate the connection details you provide. Certain functionality that requires API access to the git server will be disabled. Delivery pipeline will only work using a private worker that has network access to the git server.",
"required": false
},
{
"key": "compliance_pipeline_repo_git_provider",
"type": "string",
"default_value": "",
"description": "By default this gets set as 'hostedgit', else set to 'githubconsolidated' for GitHub repositories or `gitlab` for GitLab.",
"required": false
},
{
"key": "compliance_pipeline_repo_git_id",
"type": "string",
"default_value": "",
"description": "Set this value to `github` for github.com, `gitlabcustom` for GitLab or to the ID of a custom GitHub Enterprise server.",
"required": false
},
{
"key": "compliance_pipeline_existing_repo_url",
"type": "string",
"default_value": "",
"description": "Override to bring your own existing compliance pipelines repository URL, which is used directly instead of cloning the default change compliance pipelines repository.",
"required": false
},
{
"key": "add_code_engine_prefix",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to use `prefix` to add a prefix to the code engine project names.",
"required": false
},
{
"key": "add_container_name_suffix",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to add a random suffix to the specified ICR name.",
"required": false
},
{
"key": "app_group",
"type": "string",
"default_value": "",
"description": "Specify the Git user or group for the application repository.",
"required": false
},
{
"key": "app_repo_auth_type",
"type": "string",
"default_value": "",
"description": "Select the method of authentication that is used to access the Git repository. Valid values are 'oauth' or 'pat'. Defaults to `oauth` when unset. `pat` is a git `personal access token`.",
"required": false
},
{
"key": "app_repo_clone_from_url",
"type": "string",
"default_value": "",
"description": "Override the default sample app by providing your own sample app URL, which is cloned into the app repository. Note, uses `clone_if_not_exists` mode, so if the app repository already exists the repository contents are unchanged.",
"required": false
},
{
"key": "app_repo_clone_to_git_id",
"type": "string",
"default_value": "",
"description": "Set this value to `github` for github.com, or to the GUID of a custom GitHub Enterprise server.",
"required": false
},
{
"key": "app_repo_clone_to_git_provider",
"type": "string",
"default_value": "",
"description": "By default this gets set as 'hostedgit', else set to 'githubconsolidated' for GitHub repositories.",
"required": false
},
{
"key": "app_repo_existing_git_id",
"type": "string",
"default_value": "",
"description": "Set this value to `github` for github.com, or to the GUID of a custom GitHub Enterprise server.",
"required": false
},
{
"key": "app_repo_existing_git_provider",
"type": "string",
"default_value": "",
"description": "By default this gets set as 'hostedgit', else set to 'githubconsolidated' for GitHub repositories.",
"required": false
},
{
"key": "app_repo_git_token_secret_crn",
"type": "password",
"description": "The CRN of the Git token used for accessing the sample application repository.",
"required": false
},
{
"key": "app_repo_git_token_secret_name",
"type": "string",
"default_value": "",
"description": "Name of the Git token secret in the secret provider used for accessing the sample (or bring your own) application repository.",
"required": false
},
{
"key": "app_repo_secret_group",
"type": "string",
"default_value": "",
"description": "Secret group for the App repository secret. Defaults to the value set in `sm_secret_group` if not set. Only used with `Secrets Manager`.",
"required": false
},
{
"key": "authorization_policy_creation",
"type": "string",
"default_value": "",
"description": "Disable Toolchain Service to Secrets Manager/Key Protect/Notifications Service authorization policy creation. To disable set the value to `disabled`. This applies to the CI, CD, and CC toolchains. To set independently, see `ci_authorization_policy_creation`, `cd_authorization_policy_creation`, and `cc_authorization_policy_creation`.",
"required": false
},
{
"key": "autostart",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to auto run the CI pipeline in the CI toolchain after creation.",
"required": false
},
{
"key": "cc_doi_toolchain_id",
"type": "string",
"default_value": "",
"description": "The ID of the toolchain containing the DevOps Insights integration. This variable is used to link the DevOps Insights toolcard to a specific instance.",
"required": false
},
{
"key": "cc_link_to_doi_toolchain",
"type": "boolean",
"default_value": true,
"description": "Enable a link to a DevOps Insights instance in another toolchain, true or false.",
"required": false
},
{
"key": "cc_repository_properties",
"type": "string",
"default_value": "",
"description": "Stringified JSON containing the repositories and triggers that get created in the CI toolchain pipelines.",
"display_name": "JSON",
"required": false,
"custom_config": {
"type": "json_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "cc_toolchain_description",
"type": "string",
"default_value": "Toolchain created with terraform template for DevSecOps CC Best Practices.",
"description": "Description for the CC Toolchain.",
"required": false
},
{
"key": "cc_toolchain_name",
"type": "string",
"default_value": "",
"description": "The name of the CC Toolchain.",
"required": false
},
{
"key": "cc_trigger_manual_enable",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to enable the CC pipeline Manual trigger.",
"required": false
},
{
"key": "cc_trigger_manual_pruner_enable",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to enable the manual Pruner trigger.",
"required": false
},
{
"key": "cc_trigger_timed_cron_schedule",
"type": "string",
"default_value": "0 4 * * *",
"description": "Only needed for timer triggers. Cron expression that indicates when this trigger will activate. Maximum frequency is every 5 minutes. The string is based on UNIX crontab syntax: minute, hour, day of month, month, day of week. Example: 0 *_/2 * * * - every 2 hours.",
"required": false
},
{
"key": "cc_trigger_timed_enable",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to enable the CI pipeline Timed trigger.",
"required": false
},
{
"key": "cc_trigger_timed_pruner_enable",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to enable the timed Pruner trigger.",
"required": false
},
{
"key": "cd_change_management_group",
"type": "string",
"default_value": "",
"description": "Specify group for change management repository",
"required": false
},
{
"key": "cd_change_management_repo_auth_type",
"type": "string",
"default_value": "",
"description": "Select the method of authentication that is used to access the Git repository. Valid values are 'oauth' or 'pat'. Defaults to `oauth` when unset. `pat` is a git `personal access token`.",
"required": false
},
{
"key": "cd_change_management_repo_git_token_secret_crn",
"type": "password",
"description": "The CRN for the Change Management repository Git Token.",
"required": false
},
{
"key": "cd_change_management_repo_git_token_secret_name",
"type": "string",
"default_value": "",
"description": "Name of the Git token secret in the secret provider.",
"required": false
},
{
"key": "cd_change_management_repo_secret_group",
"type": "string",
"default_value": "",
"description": "Secret group for the Change Management repository secret. Defaults to the value set in `sm_secret_group` if not set. Only used with `Secrets Manager`.",
"required": false
},
{
"key": "cd_change_repo_clone_from_url",
"type": "string",
"default_value": "",
"description": "Override the default management repository, which is cloned into the application repository. Note, using clone_if_not_exists mode, so if the application repository already exists the repository contents are unchanged.",
"required": false
},
{
"key": "cd_cluster_name",
"type": "string",
"default_value": "",
"description": "Name of the cluster where the application is deployed.",
"required": false
},
{
"key": "cd_cluster_namespace",
"type": "string",
"default_value": "prod",
"description": "Name of the cluster namespace where the application is deployed.",
"required": false
},
{
"key": "cd_cluster_region",
"type": "string",
"default_value": "",
"description": "Region hosting the cluster where the application is deployed. Use the short form of the regions. For example `us-south`.",
"required": false
},
{
"key": "cd_code_engine_region",
"type": "string",
"default_value": "",
"description": "The region to create/lookup for the Code Engine project.",
"required": false
},
{
"key": "cd_code_engine_resource_group",
"type": "string",
"default_value": "",
"description": "The resource group of the Code Engine project.",
"required": false
},
{
"key": "cd_code_signing_cert_secret_name",
"type": "string",
"default_value": "signing-certificate",
"description": "This is the name of the secret in the secrets provider for storing the code signing certificate.",
"required": false
},
{
"key": "cd_deployment_group",
"type": "string",
"default_value": "",
"description": "Specify group for deployment.",
"required": false
},
{
"key": "cd_deployment_repo_auth_type",
"type": "string",
"default_value": "",
"description": "Select the method of authentication that is used to access the Git repository. Valid values are 'oauth' or 'pat'. Defaults to `oauth` when unset. `pat` is a git `personal access token`.",
"required": false
},
{
"key": "cd_deployment_repo_clone_from_branch",
"type": "string",
"default_value": "",
"description": "Used when deployment_repo_clone_from_url is provided, the default branch that is used by the CD build, usually either main or master.",
"required": false
},
{
"key": "cd_deployment_repo_clone_from_url",
"type": "string",
"default_value": "",
"description": "Override the default sample app by providing your own sample deployment URL, which is cloned into the app repository. Note, using clone_if_not_exists mode, so if the app repository already exists the repository contents are unchanged.",
"required": false
},
{
"key": "cd_deployment_repo_clone_to_git_id",
"type": "string",
"default_value": "",
"description": "By default absent, else custom server GUID, or other options for 'git_id' field in the browser UI.",
"required": false
},
{
"key": "cd_deployment_repo_clone_to_git_provider",
"type": "string",
"default_value": "",
"description": "By default 'hostedgit', else use 'githubconsolidated' or 'gitlab'.",
"required": false
},
{
"key": "cd_deployment_repo_existing_branch",
"type": "string",
"default_value": "",
"description": "Used when deployment_repo_existing_url is provided, the default branch that is by the CD build, usually either main or master.",
"required": false
},
{
"key": "cd_deployment_repo_existing_git_id",
"type": "string",
"default_value": "",
"description": "Set this value to `github` for github.com, or to the GUID of a custom GitHub Enterprise server.",
"required": false
},
{
"key": "cd_deployment_repo_existing_git_provider",
"type": "string",
"default_value": "",
"description": "By default this gets set as 'hostedgit', else set to 'githubconsolidated' for GitHub repositories.",
"required": false
},
{
"key": "cd_deployment_repo_existing_url",
"type": "string",
"default_value": "",
"description": "Override to bring your own existing deployment repository URL, which is used directly instead of cloning the default deployment sample.",
"required": false
},
{
"key": "cd_deployment_repo_git_token_secret_crn",
"type": "password",
"description": "The CRN for the Deployment repository Git Token.",
"required": false
},
{
"key": "cd_deployment_repo_git_token_secret_name",
"type": "string",
"default_value": "",
"description": "Name of the Git token secret in the secret provider.",
"required": false
},
{
"key": "cd_deployment_repo_secret_group",
"type": "string",
"default_value": "",
"description": "Secret group for the Deployment repository secret. Defaults to the value set in `sm_secret_group` if not set. Only used with `Secrets Manager`.",
"required": false
},
{
"key": "cd_doi_toolchain_id",
"type": "string",
"default_value": "",
"description": "The ID of the toolchain containing the DevOps Insights integration. This variable is used to link the DevOps Insights toolcard to a specific instance.",
"required": false
},
{
"key": "continuous_delivery_service_name",
"type": "string",
"default_value": "cd-devsecops",
"description": "The name of the CD instance.",
"required": false
},
{
"key": "cd_link_to_doi_toolchain",
"type": "boolean",
"default_value": true,
"description": "Enable a link to a DevOps Insights instance in another toolchain, true or false.",
"required": false
},
{
"key": "cd_privateworker_credentials_secret_crn",
"type": "password",
"description": "The CRN of the private worker service apikey that runs the pipeline tasks.",
"required": false
},
{
"key": "cd_region",
"type": "string",
"default_value": "",
"description": "IBM Cloud region used to prefix the `prod_latest` inventory repository branch.",
"required": false
},
{
"key": "cd_repository_properties",
"type": "string",
"default_value": "",
"description": "Stringified JSON containing the repositories and triggers that get created in the CI toolchain pipelines.",
"display_name": "JSON",
"required": false,
"custom_config": {
"type": "json_editor",
"grouping": "deployment",
"original_grouping": "deployment"
}
},
{
"key": "cd_service_plan",
"type": "string",
"default_value": "professional",
"description": "The Continuous Delivery service plan. Can be `lite` or `professional`.",
"required": false
},
{
"key": "cd_toolchain_description",
"type": "string",
"default_value": "Toolchain created with terraform template for DevSecOps CD Best Practices.",
"description": "Description for the CD toolchain.",
"required": false
},
{
"key": "cd_toolchain_name",
"type": "string",
"default_value": "",
"description": "The name of the CD Toolchain.",
"required": false
},
{
"key": "cd_trigger_git_enable",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to enable the CD pipeline Git trigger.",
"required": false
},
{
"key": "cd_trigger_git_promotion_validation_branch",
"type": "string",
"default_value": "prod",
"description": "Branch for Git promotion validation listener.",
"required": false
},
{
"key": "cd_trigger_git_promotion_validation_enable",
"type": "boolean",
"default_value": false,
"description": "Enable Git promotion validation for Git promotion listener.",
"required": false
},
{
"key": "cd_trigger_git_promotion_validation_listener",
"type": "string",
"default_value": "promotion-validation-listener-gitlab",
"description": "Select a Tekton EventListener to use when Git promotion validation listener trigger is fired.",
"required": false
},
{
"key": "cd_trigger_manual_enable",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to enable the CD pipeline Manual trigger.",
"required": false
},
{
"key": "cd_trigger_manual_promotion_enable",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to enable the CD pipeline Manual Promotion trigger.",
"required": false
},
{
"key": "cd_trigger_manual_pruner_enable",
"type": "boolean",
"default_value": true,
"description": "Set to `true` to enable the manual Pruner trigger.",
"required": false
},
{
"key": "cd_trigger_timed_cron_schedule",
"type": "string",
"default_value": "0 4 * * *",
"description": "Only needed for timer triggers. Cron expression that indicates when this trigger will activate. Maximum frequency is every 5 minutes. The string is based on UNIX crontab syntax: minute, hour, day of month, month, day of week. Example: 0 *_/2 * * * - every 2 hours.",
"required": false
},
{
"key": "cd_trigger_timed_enable",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to enable the CD pipeline Timed trigger.",
"required": false
},
{
"key": "cd_trigger_timed_pruner_enable",
"type": "boolean",
"default_value": false,
"description": "Set to `true` to enable the timed Pruner trigger.",
"required": false
},
{
"key": "ci_app_name",
"type": "string",
"default_value": "hello-compliance-app",
"description": "Name of the application image and inventory entry.",
"required": false
},
{
"key": "ci_cluster_name",
"type": "string",
"default_value": "",
"description": "Name of the cluster where the application is deployed. (can be the same cluster used for prod)",
"required": false
},
{
"key": "ci_cluster_namespace",
"type": "string",
"default_value": "dev",
"description": "Name of the cluster namespace where the application is deployed.",
"required": false
},
{
"key": "ci_cluster_region",
"type": "string",
"default_value": "",
"description": "Region hosting the cluster where the application is deployed. Use the short form of the regions. For example `us-south`.",
"required": false
},
{
"key": "ci_cluster_resource_group",
"type": "string",
"default_value": "",
"description": "The cluster resource group.",
"required": false
},
{
"key": "ci_code_engine_region",
"type": "string",
"default_value": "",
"description": "The region to create/lookup for the Code Engine project.",
"required": false
},
{
"key": "ci_code_engine_resource_group",
"type": "string",
"default_value": "",
"description": "The resource group of the Code Engine project.",
"required": false
},
{
"key": "ci_compliance_pipeline_pr_branch",
"type": "string",
"default_value": "",
"description": "The PR Pipeline Compliance Pipeline branch.",
"required": false
},
{
"key": "ci_doi_toolchain_id",
"type": "string",
"default_value": "",
"description": "The ID of the toolchain containing the DevOps Insights integration. This variable is used to link the DevOps Insights toolcard to a specific instance.",