Skip to content

Commit

Permalink
fix(deps): update required_provider to latest for the deployable arch…
Browse files Browse the repository at this point in the history
…itecture solution<br>* set the `provider_visibility` to default to `public` in the instances variation to workaround provider bug: IBM-Cloud/terraform-provider-ibm#5824 (#226)
  • Loading branch information
terraform-ibm-modules-ops authored Nov 28, 2024
1 parent 52a9eb2 commit 866bf7b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions solutions/agents/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ terraform {
# Lock DA into an exact provider version - renovate automation will keep it updated
ibm = {
source = "ibm-cloud/ibm"
version = "1.71.2"
version = "1.71.3"
}
helm = {
source = "hashicorp/helm"
version = "2.16.1"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.33.0"
version = "2.34.0"
}
}
}
3 changes: 2 additions & 1 deletion solutions/instances/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ variable "prefix" {
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/5824
default = "public"

validation {
condition = contains(["public", "private", "public-and-private"], var.provider_visibility)
Expand Down
2 changes: 1 addition & 1 deletion solutions/instances/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
# Lock DA into an exact provider version - renovate automation will keep it updated
ibm = {
source = "ibm-cloud/ibm"
version = "1.71.2"
version = "1.71.3"
}
time = {
source = "hashicorp/time"
Expand Down

0 comments on commit 866bf7b

Please sign in to comment.