Skip to content

Commit 866bf7b

Browse files
fix(deps): update required_provider to latest for the deployable architecture 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)
1 parent 52a9eb2 commit 866bf7b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

solutions/agents/version.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ terraform {
66
# Lock DA into an exact provider version - renovate automation will keep it updated
77
ibm = {
88
source = "ibm-cloud/ibm"
9-
version = "1.71.2"
9+
version = "1.71.3"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"
1313
version = "2.16.1"
1414
}
1515
kubernetes = {
1616
source = "hashicorp/kubernetes"
17-
version = "2.33.0"
17+
version = "2.34.0"
1818
}
1919
}
2020
}

solutions/instances/variables.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ variable "prefix" {
5353
variable "provider_visibility" {
5454
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)."
5555
type = string
56-
default = "private"
56+
# Defaulting this to public to workaround https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5824
57+
default = "public"
5758

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

solutions/instances/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Lock DA into an exact provider version - renovate automation will keep it updated
55
ibm = {
66
source = "ibm-cloud/ibm"
7-
version = "1.71.2"
7+
version = "1.71.3"
88
}
99
time = {
1010
source = "hashicorp/time"

0 commit comments

Comments
 (0)