Skip to content

Commit 0ad03dd

Browse files
committed
fix: boolean drop down
1 parent c1dba3c commit 0ad03dd

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

ibm_catalog.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@
266266
},
267267
{
268268
"key": "use_existing_resource_group",
269-
"type": "string",
270-
"default_value": "false",
269+
"type": "boolean",
270+
"default_value": false,
271271
"description": "Setting to `true` will treat the `resource_group_name` as an existing resource group. Setting `false` will provision a new resource group based on the value in `resource_group_name`.",
272272
"required": false
273273
},
@@ -350,8 +350,8 @@
350350
},
351351
{
352352
"key": "custom_app_repo_blind_connection",
353-
"type": "string",
354-
"default_value": "false",
353+
"type": "boolean",
354+
"default_value": false,
355355
"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.",
356356
"required": false
357357
},
@@ -845,8 +845,8 @@
845845
},
846846
{
847847
"key": "use_existing_resource_group",
848-
"type": "string",
849-
"default_value": "false",
848+
"type": "boolean",
849+
"default_value": false,
850850
"description": "Setting to `true` will treat the `resource_group_name` as an existing resource group. Setting `false` will provision a new resource group based on the value in `resource_group_name`.",
851851
"required": false
852852
},

kubernetes/stack_definition.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@
110110
{
111111
"name": "use_existing_resource_group",
112112
"required": false,
113-
"type": "string",
113+
"type": "boolean",
114114
"hidden": false,
115-
"default": ""
115+
"default": false
116116
},
117117
{
118118
"name": "registry_namespace",

stack_definition.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
{
5656
"name": "use_existing_resource_group",
5757
"required": false,
58-
"type": "string",
58+
"type": "boolean",
5959
"hidden": false,
60-
"default": ""
60+
"default": false
6161
},
6262
{
6363
"name": "registry_namespace",
@@ -261,9 +261,9 @@
261261
{
262262
"name": "custom_app_repo_blind_connection",
263263
"required": false,
264-
"type": "string",
264+
"type": "boolean",
265265
"hidden": false,
266-
"default": "false",
266+
"default": false,
267267
"custom_config": {}
268268
},
269269
{

0 commit comments

Comments
 (0)