Skip to content

Commit 0e75ca8

Browse files
fix(deps): update dependencies
1 parent 77c12e9 commit 0e75ca8

File tree

10 files changed

+49
-49
lines changed

10 files changed

+49
-49
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ No modules.
111111
| <a name="input_access_key"></a> [access\_key](#input\_access\_key) | Access key used by the agent to communicate with the instance. Either `access_key` or `existing_access_key_secret_name` is required. This value will be stored in a new secret on the cluster if passed. If you want to use this agent for only metrics or metrics with security and compliance, use a manager key scoped to the IBM Cloud Monitoring instance. If you only want to use the agent for security and compliance use a manager key scoped to the Security and Compliance Center Workload Protection instance. | `string` | `null` | no |
112112
| <a name="input_add_cluster_name"></a> [add\_cluster\_name](#input\_add\_cluster\_name) | If true, configure the agent to associate a tag containing the cluster name. This tag is added in the format `ibm-containers-kubernetes-cluster-name: cluster_name`. | `bool` | `true` | no |
113113
| <a name="input_agent_image_repository"></a> [agent\_image\_repository](#input\_agent\_image\_repository) | The image repository to pull the agent image from. | `string` | `"agent-slim"` | no |
114-
| <a name="input_agent_image_tag_digest"></a> [agent\_image\_tag\_digest](#input\_agent\_image\_tag\_digest) | The image tag or digest of agent image to use. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`. | `string` | `"14.1.0@sha256:2c6401018cfe3f5fcbd0713b64b096c38d47de1b5cd6c11de4691912752263fc"` | no |
114+
| <a name="input_agent_image_tag_digest"></a> [agent\_image\_tag\_digest](#input\_agent\_image\_tag\_digest) | The image tag or digest of agent image to use. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`. | `string` | `"14.1.1@sha256:36366b082d8d45dfe44d995830a1c0b0293cb9df9e55c6ab8c389e800596c743"` | no |
115115
| <a name="input_agent_limits_cpu"></a> [agent\_limits\_cpu](#input\_agent\_limits\_cpu) | Specify CPU resource limits for the agent. For more info, see https://cloud.ibm.com/docs/monitoring?topic=monitoring-resource_requirements | `string` | `"1"` | no |
116116
| <a name="input_agent_limits_memory"></a> [agent\_limits\_memory](#input\_agent\_limits\_memory) | Specify memory resource limits for the agent. For more info, see https://cloud.ibm.com/docs/monitoring?topic=monitoring-resource_requirements | `string` | `"1024Mi"` | no |
117117
| <a name="input_agent_requests_cpu"></a> [agent\_requests\_cpu](#input\_agent\_requests\_cpu) | Specify CPU resource requests for the agent. For more info, see https://cloud.ibm.com/docs/monitoring?topic=monitoring-resource_requirements | `string` | `"1"` | no |
@@ -120,7 +120,7 @@ No modules.
120120
| <a name="input_blacklisted_ports"></a> [blacklisted\_ports](#input\_blacklisted\_ports) | To block network traffic and metrics from network ports, pass the list of ports from which you want to filter out any data. For more info, see https://cloud.ibm.com/docs/monitoring?topic=monitoring-change_agent#ports | `list(number)` | `[]` | no |
121121
| <a name="input_chart"></a> [chart](#input\_chart) | The name of the Helm chart to deploy. Use `chart_location` to specify helm chart location. | `string` | `"sysdig-deploy"` | no |
122122
| <a name="input_chart_location"></a> [chart\_location](#input\_chart\_location) | The location of the agent helm chart. | `string` | `"https://charts.sysdig.com"` | no |
123-
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the agent helm chart to deploy. | `string` | `"1.91.2"` | no |
123+
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the agent helm chart to deploy. | `string` | `"1.91.4"` | no |
124124
| <a name="input_cluster_config_endpoint_type"></a> [cluster\_config\_endpoint\_type](#input\_cluster\_config\_endpoint\_type) | Specify which type of endpoint to use for for cluster config access: 'default', 'private', 'vpe', 'link'. 'default' value will use the default endpoint of the cluster. | `string` | `"default"` | no |
125125
| <a name="input_cluster_id"></a> [cluster\_id](#input\_cluster\_id) | The ID of the cluster you wish to deploy the agent in. | `string` | n/a | yes |
126126
| <a name="input_cluster_resource_group_id"></a> [cluster\_resource\_group\_id](#input\_cluster\_resource\_group\_id) | The resource group ID of the cluster. | `string` | n/a | yes |

examples/obs-agent-iks/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ resource "time_sleep" "wait_operators" {
108108

109109
module "cloud_monitoring" {
110110
source = "terraform-ibm-modules/cloud-monitoring/ibm"
111-
version = "1.6.1"
111+
version = "1.6.4"
112112
instance_name = "${var.prefix}-cloud-monitoring"
113113
resource_group_id = module.resource_group.resource_group_id
114114
resource_tags = var.resource_tags
@@ -122,7 +122,7 @@ module "cloud_monitoring" {
122122

123123
module "scc_wp" {
124124
source = "terraform-ibm-modules/scc-workload-protection/ibm"
125-
version = "1.10.13"
125+
version = "1.10.17"
126126
name = "${var.prefix}-scc-wp"
127127
resource_group_id = module.resource_group.resource_group_id
128128
region = var.region

examples/obs-agent-ocp/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ locals {
7171

7272
module "ocp_base" {
7373
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
74-
version = "3.54.4"
74+
version = "3.55.2"
7575
resource_group_id = module.resource_group.resource_group_id
7676
region = var.region
7777
tags = var.resource_tags
@@ -95,7 +95,7 @@ data "ibm_container_cluster_config" "cluster_config" {
9595

9696
module "cloud_monitoring" {
9797
source = "terraform-ibm-modules/cloud-monitoring/ibm"
98-
version = "1.6.1"
98+
version = "1.6.4"
9999
instance_name = "${var.prefix}-cloud-monitoring"
100100
resource_group_id = module.resource_group.resource_group_id
101101
resource_tags = var.resource_tags
@@ -109,7 +109,7 @@ module "cloud_monitoring" {
109109

110110
module "scc_wp" {
111111
source = "terraform-ibm-modules/scc-workload-protection/ibm"
112-
version = "1.10.13"
112+
version = "1.10.17"
113113
name = "${var.prefix}-scc-wp"
114114
resource_group_id = module.resource_group.resource_group_id
115115
region = var.region

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ variable "chart_version" {
161161
description = "The version of the agent helm chart to deploy."
162162
type = string
163163
# This version is automatically managed by renovate automation - do not remove the registryUrl comment on next line
164-
default = "1.91.2" # registryUrl: charts.sysdig.com
164+
default = "1.91.4" # registryUrl: charts.sysdig.com
165165
nullable = false
166166
}
167167

@@ -190,7 +190,7 @@ variable "agent_image_tag_digest" {
190190
description = "The image tag or digest of agent image to use. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`."
191191
type = string
192192
# This version is automatically managed by renovate automation - do not remove the datasource comment on next line
193-
default = "14.1.0@sha256:2c6401018cfe3f5fcbd0713b64b096c38d47de1b5cd6c11de4691912752263fc" # datasource: icr.io/ext/sysdig/agent-slim
193+
default = "14.1.1@sha256:36366b082d8d45dfe44d995830a1c0b0293cb9df9e55c6ab8c389e800596c743" # datasource: icr.io/ext/sysdig/agent-slim
194194
nullable = false
195195
}
196196

solutions/fully-configurable/version.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ 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.81.0"
9+
version = "1.81.1"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"
13-
version = "2.17.0"
13+
version = "3.0.2"
1414
}
1515
kubernetes = {
1616
source = "hashicorp/kubernetes"

tests/go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module github.com/terraform-ibm-modules/terraform-ibm-monitoring-agent
22

33
go 1.24.0
44

5-
toolchain go1.24.5
5+
toolchain go1.25.0
66

77
require (
88
github.com/gruntwork-io/terratest v0.50.0
99
github.com/stretchr/testify v1.10.0
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.6
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.11
1111
)
1212

1313
require (
@@ -38,7 +38,7 @@ require (
3838
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/go-openapi/analysis v0.23.0 // indirect
41-
github.com/go-openapi/errors v0.22.1 // indirect
41+
github.com/go-openapi/errors v0.22.2 // indirect
4242
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4343
github.com/go-openapi/jsonreference v0.21.0 // indirect
4444
github.com/go-openapi/loads v0.22.0 // indirect
@@ -61,7 +61,7 @@ require (
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
64-
github.com/hashicorp/terraform-json v0.25.0 // indirect
64+
github.com/hashicorp/terraform-json v0.26.0 // indirect
6565
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
6666
github.com/jinzhu/copier v0.4.0 // indirect
6767
github.com/josharian/intern v1.0.0 // indirect
@@ -84,19 +84,19 @@ require (
8484
github.com/tmccombs/hcl2json v0.6.4 // indirect
8585
github.com/ulikunitz/xz v0.5.11 // indirect
8686
github.com/xanzy/ssh-agent v0.3.3 // indirect
87-
github.com/zclconf/go-cty v1.16.2 // indirect
87+
github.com/zclconf/go-cty v1.16.3 // indirect
8888
go.mongodb.org/mongo-driver v1.17.3 // indirect
8989
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9090
go.opentelemetry.io/otel v1.35.0 // indirect
9191
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9292
go.opentelemetry.io/otel/trace v1.35.0 // indirect
93-
golang.org/x/crypto v0.40.0 // indirect
94-
golang.org/x/mod v0.25.0 // indirect
95-
golang.org/x/net v0.41.0 // indirect
93+
golang.org/x/crypto v0.41.0 // indirect
94+
golang.org/x/mod v0.26.0 // indirect
95+
golang.org/x/net v0.42.0 // indirect
9696
golang.org/x/sync v0.16.0 // indirect
97-
golang.org/x/sys v0.34.0 // indirect
98-
golang.org/x/text v0.27.0 // indirect
99-
golang.org/x/tools v0.34.0 // indirect
97+
golang.org/x/sys v0.35.0 // indirect
98+
golang.org/x/text v0.28.0 // indirect
99+
golang.org/x/tools v0.35.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)