Skip to content

Commit 7b0974f

Browse files
authored
fix: change default value of management_endpoint_type_for_buckets to "direct" and unhide the input from the DA (#102)
1 parent 3b7d7b2 commit 7b0974f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ibm_catalog.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@
215215
},
216216
{
217217
"key": "management_endpoint_type_for_buckets",
218-
"hidden": true,
219218
"options": [
220219
{
221220
"displayname": "Direct",

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ variable "cloud_logs_cos_buckets_class" {
9797
variable "management_endpoint_type_for_buckets" {
9898
description = "The type of endpoint for the IBM Terraform provider to use to manage Object Storage buckets. Possible values: `public`, `private`, `direct`. If you specify `private`, enable virtual routing and forwarding in your account, and the Terraform runtime must have access to the the IBM Cloud private network."
9999
type = string
100-
default = "private"
100+
default = "direct"
101101
validation {
102102
condition = contains(["public", "private", "direct"], var.management_endpoint_type_for_buckets)
103103
error_message = "The specified management_endpoint_type_for_buckets is not a valid selection!"

0 commit comments

Comments
 (0)