diff --git a/README.md b/README.md index d77d4ad..8809c45 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ No modules. | [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 | | [chart](#input\_chart) | The name of the Helm chart to deploy. Use `chart_location` to specify helm chart location. | `string` | `"sysdig-deploy"` | no | | [chart\_location](#input\_chart\_location) | The location of the agent helm chart. | `string` | `"https://charts.sysdig.com"` | no | -| [chart\_version](#input\_chart\_version) | The version of the agent helm chart to deploy. | `string` | `"1.93.2"` | no | +| [chart\_version](#input\_chart\_version) | The version of the agent helm chart to deploy. | `string` | `"1.93.3"` | no | | [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 | | [cluster\_id](#input\_cluster\_id) | The ID of the cluster you wish to deploy the agent in. | `string` | n/a | yes | | [cluster\_resource\_group\_id](#input\_cluster\_resource\_group\_id) | The resource group ID of the cluster. | `string` | n/a | yes | diff --git a/examples/obs-agent-iks/main.tf b/examples/obs-agent-iks/main.tf index 18b5ba8..f0f11f7 100644 --- a/examples/obs-agent-iks/main.tf +++ b/examples/obs-agent-iks/main.tf @@ -108,7 +108,7 @@ resource "time_sleep" "wait_operators" { module "cloud_monitoring" { source = "terraform-ibm-modules/cloud-monitoring/ibm" - version = "1.7.0" + version = "1.7.1" instance_name = "${var.prefix}-cloud-monitoring" resource_group_id = module.resource_group.resource_group_id resource_tags = var.resource_tags diff --git a/examples/obs-agent-ocp/main.tf b/examples/obs-agent-ocp/main.tf index 9632042..23d82d2 100644 --- a/examples/obs-agent-ocp/main.tf +++ b/examples/obs-agent-ocp/main.tf @@ -71,7 +71,7 @@ locals { module "ocp_base" { source = "terraform-ibm-modules/base-ocp-vpc/ibm" - version = "3.58.0" + version = "3.58.2" resource_group_id = module.resource_group.resource_group_id region = var.region tags = var.resource_tags @@ -95,7 +95,7 @@ data "ibm_container_cluster_config" "cluster_config" { module "cloud_monitoring" { source = "terraform-ibm-modules/cloud-monitoring/ibm" - version = "1.7.0" + version = "1.7.1" instance_name = "${var.prefix}-cloud-monitoring" resource_group_id = module.resource_group.resource_group_id resource_tags = var.resource_tags diff --git a/solutions/fully-configurable/variables.tf b/solutions/fully-configurable/variables.tf index 3133d56..2fd7018 100644 --- a/solutions/fully-configurable/variables.tf +++ b/solutions/fully-configurable/variables.tf @@ -161,7 +161,7 @@ variable "chart_version" { description = "The version of the agent helm chart to deploy." type = string # This version is automatically managed by renovate automation - do not remove the registryUrl comment on next line - default = "1.93.2" # registryUrl: charts.sysdig.com + default = "1.93.3" # registryUrl: charts.sysdig.com nullable = false } diff --git a/tests/resources/main.tf b/tests/resources/main.tf index fe28d22..91ea940 100644 --- a/tests/resources/main.tf +++ b/tests/resources/main.tf @@ -71,7 +71,7 @@ locals { module "ocp_base" { source = "terraform-ibm-modules/base-ocp-vpc/ibm" - version = "3.58.0" + version = "3.58.2" resource_group_id = module.resource_group.resource_group_id region = var.region tags = var.resource_tags @@ -90,7 +90,7 @@ module "ocp_base" { module "cloud_monitoring" { source = "terraform-ibm-modules/cloud-monitoring/ibm" - version = "1.7.0" + version = "1.7.1" instance_name = "${var.prefix}-cloud-monitoring" resource_group_id = module.resource_group.resource_group_id resource_tags = var.resource_tags diff --git a/variables.tf b/variables.tf index 9c07614..b2a8ad6 100644 --- a/variables.tf +++ b/variables.tf @@ -162,7 +162,7 @@ variable "chart_version" { description = "The version of the agent helm chart to deploy." type = string # This version is automatically managed by renovate automation - do not remove the registryUrl comment on next line - default = "1.93.2" # registryUrl: charts.sysdig.com + default = "1.93.3" # registryUrl: charts.sysdig.com nullable = false }