Skip to content

Commit 3f3d8bb

Browse files
authored
fix(deps): update provider version to 1.75.2 (#264)
1 parent 21b87a9 commit 3f3d8bb

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

solutions/agents/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ 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.75.1"
9+
version = "1.75.2"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"

solutions/instances/variables.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,19 @@ variable "prefix" {
5050
description = "The prefix to add to all resources that this solution creates."
5151
default = null
5252
}
53+
5354
variable "provider_visibility" {
5455
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)."
5556
type = string
56-
# Defaulting this to public to workaround https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5824
57+
# Defaulting this to public to workaround https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5977
5758
default = "public"
5859

5960
validation {
6061
condition = contains(["public", "private", "public-and-private"], var.provider_visibility)
6162
error_message = "Invalid visibility option. Allowed values are 'public', 'private', or 'public-and-private'."
6263
}
6364
}
65+
6466
##############################################################################
6567
# IBM Cloud Logs
6668
##############################################################################

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.75.1"
7+
version = "1.75.2"
88
}
99
time = {
1010
source = "hashicorp/time"

solutions/logs-routing/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.75.1"
7+
version = "1.75.2"
88
}
99
}
1010
}

tests/resources/existing-resources/main.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ module "cloud_log_buckets" {
6161

6262

6363
module "cloud_monitoring" {
64-
source = "terraform-ibm-modules/observability-instances/ibm//modules/cloud_monitoring"
65-
version = "3.4.0"
66-
region = var.region
67-
resource_group_id = module.resource_group.resource_group_id
68-
instance_name = "${var.prefix}-sysdig"
69-
plan = "lite"
70-
tags = var.resource_tags
71-
64+
source = "terraform-ibm-modules/observability-instances/ibm//modules/cloud_monitoring"
65+
version = "3.4.0"
66+
region = var.region
67+
resource_group_id = module.resource_group.resource_group_id
68+
instance_name = "${var.prefix}-sysdig"
69+
plan = "lite"
70+
tags = var.resource_tags
71+
enable_platform_metrics = false
7272
}
7373

7474
##############################################################################

0 commit comments

Comments
 (0)