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
32 changes: 28 additions & 4 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,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 +461,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 +516,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