Skip to content

Commit 76b2441

Browse files
fix(deps): update dependencies (#230)
1 parent a82db00 commit 76b2441

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ 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.95.3"` | no |
123+
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | The version of the agent helm chart to deploy. | `string` | `"1.95.5"` | 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 |
127127
| <a name="input_cluster_shield_deploy"></a> [cluster\_shield\_deploy](#input\_cluster\_shield\_deploy) | Deploy the Cluster Shield component to provide runtime detection and policy enforcement for Kubernetes workloads. If enabled, a Kubernetes Deployment will be deployed to your cluster using helm. | `bool` | `true` | no |
128128
| <a name="input_cluster_shield_image_repository"></a> [cluster\_shield\_image\_repository](#input\_cluster\_shield\_image\_repository) | The image repository to pull the Cluster Shield image from. | `string` | `"cluster-shield"` | no |
129-
| <a name="input_cluster_shield_image_tag_digest"></a> [cluster\_shield\_image\_tag\_digest](#input\_cluster\_shield\_image\_tag\_digest) | The image tag or digest to pull for the Cluster Shield component. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`. | `string` | `"1.16.0@sha256:3379ee88221885d75913d1e6b9bece8363ac3645194fb0b515b45f5b20add1fa"` | no |
129+
| <a name="input_cluster_shield_image_tag_digest"></a> [cluster\_shield\_image\_tag\_digest](#input\_cluster\_shield\_image\_tag\_digest) | The image tag or digest to pull for the Cluster Shield component. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`. | `string` | `"1.16.1@sha256:a9263bff3bbf22dc3594f83029562e3a0036f08d3978b1bd3f7ddeeb397921c7"` | no |
130130
| <a name="input_cluster_shield_limits_cpu"></a> [cluster\_shield\_limits\_cpu](#input\_cluster\_shield\_limits\_cpu) | Specify CPU resource limits for the cluster shield pods. | `string` | `"1500m"` | no |
131131
| <a name="input_cluster_shield_limits_memory"></a> [cluster\_shield\_limits\_memory](#input\_cluster\_shield\_limits\_memory) | Specify memory resource limits for the cluster shield pods. | `string` | `"1536Mi"` | no |
132132
| <a name="input_cluster_shield_requests_cpu"></a> [cluster\_shield\_requests\_cpu](#input\_cluster\_shield\_requests\_cpu) | Specify CPU resource requests for the cluster shield pods. | `string` | `"500m"` | no |

examples/obs-agent-iks/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.3.0"
7+
version = "1.4.0"
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
@@ -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.8.7"
111+
version = "1.9.2"
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.13.5"
125+
version = "1.14.0"
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: 4 additions & 4 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.3.0"
7+
version = "1.4.0"
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
@@ -71,7 +71,7 @@ locals {
7171

7272
module "ocp_base" {
7373
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
74-
version = "3.64.0"
74+
version = "3.66.0"
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.8.7"
98+
version = "1.9.2"
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.13.5"
112+
version = "1.14.0"
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
@@ -186,7 +186,7 @@ variable "chart_version" {
186186
description = "The version of the agent helm chart to deploy."
187187
type = string
188188
# This version is automatically managed by renovate automation - do not remove the registryUrl comment on next line
189-
default = "1.95.3" # registryUrl: charts.sysdig.com
189+
default = "1.95.5" # registryUrl: charts.sysdig.com
190190
nullable = false
191191
}
192192

@@ -355,7 +355,7 @@ variable "cluster_shield_image_tag_digest" {
355355
description = "The image tag or digest to pull for the Cluster Shield component. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`."
356356
type = string
357357
# This version is automatically managed by renovate automation - do not remove the datasource comment on next line
358-
default = "1.16.0@sha256:3379ee88221885d75913d1e6b9bece8363ac3645194fb0b515b45f5b20add1fa" # datasource: icr.io/ext/sysdig/cluster-shield
358+
default = "1.16.1@sha256:a9263bff3bbf22dc3594f83029562e3a0036f08d3978b1bd3f7ddeeb397921c7" # datasource: icr.io/ext/sysdig/cluster-shield
359359
}
360360

361361
variable "cluster_shield_image_repository" {

solutions/fully-configurable/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.84.0"
9+
version = "1.84.1"
1010
}
1111
helm = {
1212
source = "hashicorp/helm"

tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.25.3
77
require (
88
github.com/gruntwork-io/terratest v0.51.0
99
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.14
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.15
1111
)
1212

1313
require (

tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
296296
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
297297
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
298298
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
299-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.14 h1:glsxlvkJ3aEehvdWQi/g3sqDFA5XtJumwEieN+TfGzo=
300-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.14/go.mod h1:o0c7STGyke4WOA45ddxNRMJu8JdPw07uICKMJQc1hNg=
299+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.15 h1:vTLAB97MQ45Hfla67pIWYnb/Z5YuEzRLjQ6WN4GHWgI=
300+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.15/go.mod h1:g0kmBhFk6pVoTmse42tMNCSNktiOYJHAda/pAzOIxco=
301301
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
302302
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
303303
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.3.0"
7+
version = "1.4.0"
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
@@ -71,7 +71,7 @@ locals {
7171

7272
module "ocp_base" {
7373
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
74-
version = "3.64.0"
74+
version = "3.66.0"
7575
resource_group_id = module.resource_group.resource_group_id
7676
region = var.region
7777
tags = var.resource_tags
@@ -90,7 +90,7 @@ module "ocp_base" {
9090

9191
module "cloud_monitoring" {
9292
source = "terraform-ibm-modules/cloud-monitoring/ibm"
93-
version = "1.8.7"
93+
version = "1.9.2"
9494
instance_name = "${var.prefix}-cloud-monitoring"
9595
resource_group_id = module.resource_group.resource_group_id
9696
resource_tags = var.resource_tags

variables.tf

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

@@ -360,7 +360,7 @@ variable "cluster_shield_image_tag_digest" {
360360
description = "The image tag or digest to pull for the Cluster Shield component. If using digest, it must be in the format of `X.Y.Z@sha256:xxxxx`."
361361
type = string
362362
# This version is automatically managed by renovate automation - do not remove the datasource comment on next line
363-
default = "1.16.0@sha256:3379ee88221885d75913d1e6b9bece8363ac3645194fb0b515b45f5b20add1fa" # datasource: icr.io/ext/sysdig/cluster-shield
363+
default = "1.16.1@sha256:a9263bff3bbf22dc3594f83029562e3a0036f08d3978b1bd3f7ddeeb397921c7" # datasource: icr.io/ext/sysdig/cluster-shield
364364
}
365365

366366
variable "cluster_shield_image_repository" {

0 commit comments

Comments
 (0)