Skip to content

Commit b4c35ad

Browse files
authored
fix: add workaround for another catalog issue (#239)
1 parent 32d8afc commit b4c35ad

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
@@ -132,16 +132,26 @@
132132
},
133133
{
134134
"key": "enable_platform_metrics",
135-
"type": "bool",
136-
"default_value": true,
135+
"type": "string",
136+
"default_value": "true",
137137
"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).",
138138
"required": true,
139-
"virtual": true
139+
"virtual": true,
140+
"options": [
141+
{
142+
"displayname": "true",
143+
"value": "true"
144+
},
145+
{
146+
"displayname": "false",
147+
"value": "false"
148+
}
149+
]
140150
},
141151
{
142152
"key": "logs_routing_tenant_regions",
143153
"type": "list(string)",
144-
"default_value": [],
154+
"default_value": "[]",
145155
"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).",
146156
"required": true,
147157
"virtual": true,

0 commit comments

Comments
 (0)