Skip to content

Commit 438e0ff

Browse files
fix(deps): update dependencies
1 parent 6489909 commit 438e0ff

File tree

9 files changed

+76
-76
lines changed

9 files changed

+76
-76
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.8"
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: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ go 1.24.0
55
toolchain go1.25.4
66

77
require (
8-
github.com/gruntwork-io/terratest v0.52.0
8+
github.com/gruntwork-io/terratest v0.54.0
99
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.22
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34
1111
)
1212

1313
require (
1414
dario.cat/mergo v1.0.0 // indirect
1515
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
16-
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
16+
github.com/IBM-Cloud/power-go-client v1.14.3 // indirect
1717
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
18+
github.com/IBM/go-sdk-core/v5 v5.21.2 // indirect
19+
github.com/IBM/platform-services-go-sdk v0.90.4 // indirect
20+
github.com/IBM/project-go-sdk v0.4.0 // indirect
2121
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2222
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
2323
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -29,11 +29,11 @@ require (
2929
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
3030
github.com/davecgh/go-spew v1.1.1 // indirect
3131
github.com/emirpasic/gods v1.18.1 // indirect
32-
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
32+
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
3333
github.com/ghodss/yaml v1.0.0 // indirect
3434
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3535
github.com/go-git/go-billy/v5 v5.6.2 // indirect
36-
github.com/go-git/go-git/v5 v5.16.3 // indirect
36+
github.com/go-git/go-git/v5 v5.16.4 // indirect
3737
github.com/go-logr/logr v1.4.2 // indirect
3838
github.com/go-logr/stdr v1.2.2 // indirect
3939
github.com/go-openapi/analysis v0.23.0 // indirect
@@ -48,7 +48,7 @@ require (
4848
github.com/go-openapi/validate v0.24.0 // indirect
4949
github.com/go-playground/locales v0.14.1 // indirect
5050
github.com/go-playground/universal-translator v0.18.1 // indirect
51-
github.com/go-playground/validator/v10 v10.26.0 // indirect
51+
github.com/go-playground/validator/v10 v10.28.0 // indirect
5252
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5353
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5454
github.com/google/go-cmp v0.7.0 // indirect
@@ -57,7 +57,7 @@ require (
5757
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5858
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
5959
github.com/hashicorp/go-multierror v1.1.1 // indirect
60-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
60+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
6161
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6262
github.com/hashicorp/go-version v1.7.0 // indirect
6363
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
@@ -89,14 +89,14 @@ require (
8989
go.opentelemetry.io/otel v1.35.0 // indirect
9090
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9191
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
92+
go.yaml.in/yaml/v2 v2.4.3 // indirect
93+
golang.org/x/crypto v0.45.0 // indirect
94+
golang.org/x/mod v0.29.0 // indirect
95+
golang.org/x/net v0.47.0 // indirect
9696
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
97+
golang.org/x/sys v0.38.0 // indirect
98+
golang.org/x/text v0.31.0 // indirect
99+
golang.org/x/tools v0.38.0 // indirect
100100
gopkg.in/warnings.v0 v0.1.2 // indirect
101101
gopkg.in/yaml.v2 v2.4.0 // indirect
102102
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)