Skip to content

Commit 77982fd

Browse files
authored
fix: add workaround for another catalog issue (#484)
1 parent baa16eb commit 77982fd

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

ibm_catalog.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,16 +311,26 @@
311311
},
312312
{
313313
"key": "enable_platform_metrics",
314-
"type": "bool",
315-
"default_value": true,
314+
"type": "string",
315+
"default_value": "true",
316316
"description": "When set to `true`, the IBM Cloud Monitoring instance will be configured to collect platform metrics from the provided region. You can configure 1 instance only of the IBM Cloud Monitoring service per region to collect platform metrics in that location. Check with the account or service administrator if another monitoring instance has already been configured. You may not have permissions to see all monitoring instances in the region. [Learn more](https://cloud.ibm.com/docs/monitoring?topic=monitoring-platform_metrics_enabling).",
317317
"required": true,
318-
"virtual": true
318+
"virtual": true,
319+
"options": [
320+
{
321+
"displayname": "true",
322+
"value": "true"
323+
},
324+
{
325+
"displayname": "false",
326+
"value": "false"
327+
}
328+
]
319329
},
320330
{
321331
"key": "logs_routing_tenant_regions",
322332
"type": "list(string)",
323-
"default_value": [],
333+
"default_value": "[]",
324334
"description": "To manage platform logs that are generated by IBM Cloud services in a region of IBM Cloud, you must create a tenant in each region that you operate. Pass a list of regions to create a tenant in. [Learn more](https://cloud.ibm.com/docs/logs-router?topic=logs-router-about-platform-logs).",
325335
"required": true,
326336
"virtual": true,

0 commit comments

Comments
 (0)