Skip to content

Commit 0519221

Browse files
fix(deps): update dependencies
1 parent 64b2379 commit 0519221

File tree

8 files changed

+19
-21
lines changed

8 files changed

+19
-21
lines changed

examples/logs-agent-iks/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.4.0"
7+
version = "1.4.3"
88
# if an existing resource group is not set (null) create a new one using prefix
99
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1010
existing_resource_group_name = var.resource_group
@@ -17,7 +17,7 @@ module "resource_group" {
1717
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agent and routers sending logs.
1818
module "iam_service_id" {
1919
source = "terraform-ibm-modules/iam-service-id/ibm"
20-
version = "1.2.2"
20+
version = "1.2.5"
2121
iam_service_id_name = "${var.prefix}-service-id"
2222
iam_service_id_description = "Logs Agent service id"
2323
iam_service_id_apikey_provision = true

examples/logs-agent-ocp/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.4.0"
7+
version = "1.4.3"
88
# if an existing resource group is not set (null) create a new one using prefix
99
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1010
existing_resource_group_name = var.resource_group
@@ -22,7 +22,7 @@ locals {
2222

2323
module "trusted_profile" {
2424
source = "terraform-ibm-modules/trusted-profile/ibm"
25-
version = "3.2.0"
25+
version = "3.2.5"
2626
trusted_profile_name = "${var.prefix}-profile"
2727
trusted_profile_description = "Logs agent Trusted Profile"
2828
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agent and routers sending logs.
@@ -106,7 +106,7 @@ locals {
106106

107107
module "ocp_base" {
108108
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
109-
version = "3.73.5"
109+
version = "3.74.0"
110110
resource_group_id = module.resource_group.resource_group_id
111111
region = var.region
112112
tags = var.resource_tags

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020
module "trusted_profile" {
2121
count = (var.logs_agent_iam_mode == "TrustedProfile" && var.logs_agent_trusted_profile_id == null) ? 1 : 0
2222
source = "terraform-ibm-modules/trusted-profile/ibm"
23-
version = "3.2.0"
23+
version = "3.2.5"
2424
trusted_profile_name = "${local.prefix}trusted-profile"
2525
trusted_profile_description = "Logs agent Trusted Profile"
2626
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agents and routers sending logs.

solutions/fully-configurable/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.85.0"
9+
version = "1.86.0"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"
1313
version = "3.1.1"
1414
}
1515
kubernetes = {
1616
source = "hashicorp/kubernetes"
17-
version = "2.38.0"
17+
version = "3.0.0"
1818
}
1919
}
2020
}

tests/go.mod

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
module github.com/terraform-ibm-modules/terraform-ibm-logs-agent
22

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

75
require (
86
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.34
8+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.4
119
)
1210

1311
require (
@@ -37,7 +35,7 @@ require (
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
40-
github.com/go-openapi/errors v0.22.4 // indirect
38+
github.com/go-openapi/errors v0.22.5 // indirect
4139
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4240
github.com/go-openapi/jsonreference v0.21.0 // indirect
4341
github.com/go-openapi/loads v0.22.0 // indirect

tests/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ github.com/go-openapi/analysis v0.23.0 h1:aGday7OWupfMs+LbmLZG4k0MYXIANxcuBTYUC0
8383
github.com/go-openapi/analysis v0.23.0/go.mod h1:9mz9ZWaSlV8TvjQHLl2mUW2PbZtemkE8yA5v22ohupo=
8484
github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M=
8585
github.com/go-openapi/errors v0.20.3/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk=
86-
github.com/go-openapi/errors v0.22.4 h1:oi2K9mHTOb5DPW2Zjdzs/NIvwi2N3fARKaTJLdNabaM=
87-
github.com/go-openapi/errors v0.22.4/go.mod h1:z9S8ASTUqx7+CP1Q8dD8ewGH/1JWFFLX/2PmAYNQLgk=
86+
github.com/go-openapi/errors v0.22.5 h1:Yfv4O/PRYpNF3BNmVkEizcHb3uLVVsrDt3LNdgAKRY4=
87+
github.com/go-openapi/errors v0.22.5/go.mod h1:z9S8ASTUqx7+CP1Q8dD8ewGH/1JWFFLX/2PmAYNQLgk=
8888
github.com/go-openapi/jsonpointer v0.21.1 h1:whnzv/pNXtK2FbX/W9yJfRmE2gsmkfahjMKB0fZvcic=
8989
github.com/go-openapi/jsonpointer v0.21.1/go.mod h1:50I1STOfbY1ycR8jGz8DaMeLCdXiI6aDteEdRNNzpdk=
9090
github.com/go-openapi/jsonreference v0.21.0 h1:Rs+Y7hSXT83Jacb7kFyjn4ijOuVGSvOdF2+tg1TRrwQ=
@@ -297,8 +297,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
297297
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
298298
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
299299
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
300-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34 h1:eED28nDc2If2KjsEi5VBAUt0at+FxVJw/lUcwzeW8Ck=
301-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34/go.mod h1:VCaRJKjjwIqWMdXqMwvC/9WCwWe8lBTRZrkYrQbcNUU=
300+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.4 h1:Y0IvIJDQi1Fyr9bki3kLovqDl9DZWIFrtA7cuwT/rJ0=
301+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.4/go.mod h1:clGPU4e57ofDSgBbNSzjNMf4KlJxSbVbU0O3FLpqRns=
302302
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
303303
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
304304
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

tests/resources/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.4.0"
7+
version = "1.4.3"
88
# if an existing resource group is not set (null) create a new one using prefix
99
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1010
existing_resource_group_name = var.resource_group
@@ -74,7 +74,7 @@ locals {
7474

7575
module "ocp_base" {
7676
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
77-
version = "3.73.5"
77+
version = "3.74.0"
7878
resource_group_id = module.resource_group.resource_group_id
7979
region = var.region
8080
tags = var.resource_tags
@@ -171,7 +171,7 @@ locals {
171171

172172
module "trusted_profile" {
173173
source = "terraform-ibm-modules/trusted-profile/ibm"
174-
version = "3.2.0"
174+
version = "3.2.5"
175175
trusted_profile_name = "${var.prefix}-profile"
176176
trusted_profile_description = "Logs agent Trusted Profile"
177177
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agent and routers sending logs.

0 commit comments

Comments
 (0)