Skip to content

Commit

Permalink
fix: set provider_visibility back to public to workaround provider …
Browse files Browse the repository at this point in the history
  • Loading branch information
ocofaigh authored Nov 29, 2024
1 parent 3375c65 commit 5bb4efe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solutions/banking/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ variable "ibmcloud_api_key" {
variable "provider_visibility" {
description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)."
type = string
default = "private"
# Defaulting this to public to workaround https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5828
default = "public"

validation {
condition = contains(["public", "private", "public-and-private"], var.provider_visibility)
Expand Down

0 comments on commit 5bb4efe

Please sign in to comment.