Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dynamic_values/config_modules/list_to_map/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variable "lookup_field" {
}

variable "lookup_value_regex" {
description = "regular expression for reurned value"
description = "Regular expression for returned value"
type = string
default = null
}
Expand Down
33 changes: 28 additions & 5 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@
"key": "enable_platform_metrics",
"type": "boolean",
"default_value": false,
"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).",
"required": true,
"virtual": true,
"options": [
Expand Down Expand Up @@ -375,7 +374,21 @@
}
},
{
"key": "enable_vpc_flow_logs"
"key": "enable_vpc_flow_logs",
"type": "boolean",
"type_metadata": "boolean",
"options": [
{
"description": "Do not collect VPC network traffic metadata.",
"displayname": "False",
"value": false
},
{
"description": "Collect and store IP traffic metadata from VPC network interfaces to Cloud Object Storage for monitoring, security analysis, and troubleshooting.",
"displayname": "True",
"value": true
}
]
},
{
"key": "existing_cos_instance_crn",
Expand Down Expand Up @@ -447,41 +460,48 @@
},
{
"key": "management_endpoint_type_for_bucket",
"hidden": true,
"options": [
{
"displayname": "Public",
"displayname": "public",
"value": "public"
},
{
"displayname": "Private",
"displayname": "private",
"value": "private"
},
{
"displayname": "Direct",
"displayname": "direct",
"value": "direct"
}
]
},
{
"key": "cos_bucket_class",
"type_metadata": "string",
"options": [
{
"description": "Active data accessed frequently.",
"displayname": "Standard",
"value": "standard"
},
{
"description": "Less active data accessed once a month.",
"displayname": "Vault",
"value": "vault"
},
{
"description": "Cold data accessed a few times yearly.",
"displayname": "Cold",
"value": "cold"
},
{
"description": "Automatic cost optimization for data of any activity or access.",
"displayname": "Smart",
"value": "smart"
},
{
"description": "Single all-inclusive price for storage, API operations, and bandwidth. Ideal for active workloads with large usage.",
"displayname": "OneRate Active",
"value": "onerate_active"
}
Expand All @@ -495,12 +515,15 @@
},
{
"key": "flow_logs_cos_bucket_archive_type",
"type_metadata": "string",
"options": [
{
"description": "Lower-cost archive storage. Data retrieval takes hours.",
"displayname": "Glacier",
"value": "Glacier"
},
{
"description": "Higher-cost archive with faster retrieval.",
"displayname": "Accelerated",
"value": "Accelerated"
}
Expand Down