Skip to content

Commit 816c92b

Browse files
fix(deps): update dependencies
1 parent 6489909 commit 816c92b

File tree

9 files changed

+77
-79
lines changed

9 files changed

+77
-79
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ on:
88

99
jobs:
1010
call-terraform-release-pipeline:
11-
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.23.2
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.24.0
1212
secrets: inherit

solutions/agents/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ data "ibm_container_cluster_config" "cluster_config" {
1414

1515
module "observability_agents" {
1616
source = "terraform-ibm-modules/observability-agents/ibm"
17-
version = "2.9.6"
17+
version = "2.9.9"
1818
cluster_id = var.cluster_id
1919
cluster_resource_group_id = var.cluster_resource_group_id
2020
cluster_config_endpoint_type = var.cluster_config_endpoint_type

solutions/agents/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
helm = {
1212
source = "hashicorp/helm"
13-
version = "3.1.0"
13+
version = "3.1.1"
1414
}
1515
kubernetes = {
1616
source = "hashicorp/kubernetes"

solutions/instances/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ module "cloud_monitoring_crn_parser" {
245245
module "cloud_monitoring" {
246246
count = var.cloud_monitoring_provision ? 1 : 0
247247
source = "terraform-ibm-modules/cloud-monitoring/ibm"
248-
version = "1.10.8"
248+
version = "1.11.0"
249249
region = var.region
250250
resource_group_id = module.resource_group.resource_group_id
251251
instance_name = local.cloud_monitoring_instance_name
@@ -259,7 +259,7 @@ module "cloud_monitoring" {
259259
module "cloud_logs" {
260260
count = var.cloud_logs_provision ? 1 : 0
261261
source = "terraform-ibm-modules/cloud-logs/ibm"
262-
version = "1.9.12"
262+
version = "1.10.0"
263263
region = var.region
264264
resource_group_id = module.resource_group.resource_group_id
265265
instance_name = local.cloud_logs_instance_name
@@ -304,7 +304,7 @@ module "cloud_logs" {
304304

305305
module "metrics_router" {
306306
source = "terraform-ibm-modules/cloud-monitoring/ibm//modules/metrics_routing"
307-
version = "1.10.8"
307+
version = "1.11.0"
308308
metrics_router_targets = var.enable_metrics_routing_to_cloud_monitoring ? [
309309
{
310310
destination_crn = var.cloud_monitoring_provision ? module.cloud_monitoring[0].crn : var.existing_cloud_monitoring_crn
@@ -320,7 +320,7 @@ module "metrics_router" {
320320
module "activity_tracker" {
321321
depends_on = [time_sleep.wait_for_atracker_cos_authorization_policy]
322322
source = "terraform-ibm-modules/activity-tracker/ibm"
323-
version = "1.4.14"
323+
version = "1.5.0"
324324
cos_targets = var.enable_at_event_routing_to_cos_bucket ? [
325325
{
326326
bucket_name = local.cos_target_bucket_name
@@ -376,7 +376,7 @@ module "kms" {
376376
}
377377
count = (var.existing_cos_kms_key_crn != null || (length(coalesce(local.buckets_config, [])) == 0)) ? 0 : 1 # no need to create any KMS resources if passing an existing key, or bucket
378378
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
379-
version = "5.4.10"
379+
version = "5.5.0"
380380
create_key_protect_instance = false
381381
region = local.kms_region
382382
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -466,7 +466,7 @@ module "cos_instance" {
466466
}
467467
count = var.existing_cos_instance_crn == null && length(coalesce(local.buckets_config, [])) != 0 ? 1 : 0 # no need to call COS module if consumer is using existing COS instance
468468
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
469-
version = "10.5.8"
469+
version = "10.7.0"
470470
resource_group_id = local.cos_resource_group_id
471471
create_cos_instance = true
472472
cos_instance_name = try("${local.prefix}-${var.cos_instance_name}", var.cos_instance_name)
@@ -483,7 +483,7 @@ module "cos_bucket" {
483483
}
484484
count = length(coalesce(local.buckets_config, [])) != 0 ? 1 : 0 # no need to call COS module if consumer is using existing COS bucket
485485
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
486-
version = "10.5.8"
486+
version = "10.7.0"
487487
bucket_configs = [
488488
for value in local.buckets_config :
489489
{

tests/go.mod

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
module github.com/terraform-ibm-modules/terraform-ibm-observability-da
22

3-
go 1.24.0
4-
5-
toolchain go1.25.4
3+
go 1.25.4
64

75
require (
8-
github.com/gruntwork-io/terratest v0.52.0
6+
github.com/gruntwork-io/terratest v0.54.0
97
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.22
8+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34
119
)
1210

1311
require (
1412
dario.cat/mergo v1.0.0 // indirect
1513
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
16-
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
14+
github.com/IBM-Cloud/power-go-client v1.14.3 // indirect
1715
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
18-
github.com/IBM/go-sdk-core/v5 v5.21.0 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.90.0 // indirect
20-
github.com/IBM/project-go-sdk v0.3.9 // indirect
16+
github.com/IBM/go-sdk-core/v5 v5.21.2 // indirect
17+
github.com/IBM/platform-services-go-sdk v0.90.4 // indirect
18+
github.com/IBM/project-go-sdk v0.4.0 // indirect
2119
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2220
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
2321
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -29,11 +27,11 @@ require (
2927
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
3028
github.com/davecgh/go-spew v1.1.1 // indirect
3129
github.com/emirpasic/gods v1.18.1 // indirect
32-
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
30+
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
3331
github.com/ghodss/yaml v1.0.0 // indirect
3432
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3533
github.com/go-git/go-billy/v5 v5.6.2 // indirect
36-
github.com/go-git/go-git/v5 v5.16.3 // indirect
34+
github.com/go-git/go-git/v5 v5.16.4 // indirect
3735
github.com/go-logr/logr v1.4.2 // indirect
3836
github.com/go-logr/stdr v1.2.2 // indirect
3937
github.com/go-openapi/analysis v0.23.0 // indirect
@@ -48,7 +46,7 @@ require (
4846
github.com/go-openapi/validate v0.24.0 // indirect
4947
github.com/go-playground/locales v0.14.1 // indirect
5048
github.com/go-playground/universal-translator v0.18.1 // indirect
51-
github.com/go-playground/validator/v10 v10.26.0 // indirect
49+
github.com/go-playground/validator/v10 v10.28.0 // indirect
5250
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5351
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5452
github.com/google/go-cmp v0.7.0 // indirect
@@ -57,7 +55,7 @@ require (
5755
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5856
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
5957
github.com/hashicorp/go-multierror v1.1.1 // indirect
60-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
58+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
6159
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6260
github.com/hashicorp/go-version v1.7.0 // indirect
6361
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
@@ -89,14 +87,14 @@ require (
8987
go.opentelemetry.io/otel v1.35.0 // indirect
9088
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9189
go.opentelemetry.io/otel/trace v1.35.0 // indirect
92-
go.yaml.in/yaml/v2 v2.4.2 // indirect
93-
golang.org/x/crypto v0.43.0 // indirect
94-
golang.org/x/mod v0.28.0 // indirect
95-
golang.org/x/net v0.46.0 // indirect
90+
go.yaml.in/yaml/v2 v2.4.3 // indirect
91+
golang.org/x/crypto v0.45.0 // indirect
92+
golang.org/x/mod v0.29.0 // indirect
93+
golang.org/x/net v0.47.0 // indirect
9694
golang.org/x/sync v0.18.0 // indirect
97-
golang.org/x/sys v0.37.0 // indirect
98-
golang.org/x/text v0.30.0 // indirect
99-
golang.org/x/tools v0.37.0 // indirect
95+
golang.org/x/sys v0.38.0 // indirect
96+
golang.org/x/text v0.31.0 // indirect
97+
golang.org/x/tools v0.38.0 // indirect
10098
gopkg.in/warnings.v0 v0.1.2 // indirect
10199
gopkg.in/yaml.v2 v2.4.0 // indirect
102100
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)