Skip to content

Commit 2bbbcc3

Browse files
authored
fix: add workaround for another catalog issue (#1006)
1 parent 22ef2e5 commit 2bbbcc3

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
@@ -182,16 +182,26 @@
182182
},
183183
{
184184
"key": "enable_platform_metrics",
185-
"type": "bool",
186-
"default_value": true,
185+
"type": "string",
186+
"default_value": "true",
187187
"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).",
188188
"required": true,
189-
"virtual": true
189+
"virtual": true,
190+
"options": [
191+
{
192+
"displayname": "true",
193+
"value": "true"
194+
},
195+
{
196+
"displayname": "false",
197+
"value": "false"
198+
}
199+
]
190200
},
191201
{
192202
"key": "logs_routing_tenant_regions",
193203
"type": "list(string)",
194-
"default_value": [],
204+
"default_value": "[]",
195205
"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).",
196206
"required": true,
197207
"virtual": true,

0 commit comments

Comments
 (0)