Skip to content

Commit 353a018

Browse files
fix(deps): update dependencies (#171)
1 parent 4b4a9e8 commit 353a018

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ No modules.
124124
| <a name="input_logs_agent_additional_metadata"></a> [logs\_agent\_additional\_metadata](#input\_logs\_agent\_additional\_metadata) | The list of additional metadata fields to add to the routed logs. | <pre>list(object({<br/> key = optional(string)<br/> value = optional(string)<br/> }))</pre> | `[]` | no |
125125
| <a name="input_logs_agent_chart"></a> [logs\_agent\_chart](#input\_logs\_agent\_chart) | The name of the Helm chart to deploy. | `string` | `"logs-agent-helm"` | no |
126126
| <a name="input_logs_agent_chart_location"></a> [logs\_agent\_chart\_location](#input\_logs\_agent\_chart\_location) | The location of the Logs agent helm chart. | `string` | `"oci://icr.io/ibm/observe"` | no |
127-
| <a name="input_logs_agent_chart_version"></a> [logs\_agent\_chart\_version](#input\_logs\_agent\_chart\_version) | The version of the Helm chart to deploy. | `string` | `"1.6.2"` | no |
127+
| <a name="input_logs_agent_chart_version"></a> [logs\_agent\_chart\_version](#input\_logs\_agent\_chart\_version) | The version of the Helm chart to deploy. | `string` | `"1.6.3"` | no |
128128
| <a name="input_logs_agent_enable_scc"></a> [logs\_agent\_enable\_scc](#input\_logs\_agent\_enable\_scc) | Whether to enable creation of Security Context Constraints in Openshift. When installing on an OpenShift cluster, this setting is mandatory to configure permissions for pods within your cluster. | `bool` | `true` | no |
129129
| <a name="input_logs_agent_exclude_log_source_paths"></a> [logs\_agent\_exclude\_log\_source\_paths](#input\_logs\_agent\_exclude\_log\_source\_paths) | The list of log sources to exclude. Specify the paths that the Logs agent ignores. | `list(string)` | `[]` | no |
130130
| <a name="input_logs_agent_iam_api_key"></a> [logs\_agent\_iam\_api\_key](#input\_logs\_agent\_iam\_api\_key) | The IBM Cloud API key for the Logs agent to authenticate and communicate with the IBM Cloud Logs. It is required if `logs_agent_iam_mode` is set to `IAMAPIKey`. | `string` | `null` | no |
131131
| <a name="input_logs_agent_iam_environment"></a> [logs\_agent\_iam\_environment](#input\_logs\_agent\_iam\_environment) | IAM authentication Environment: `Production` or `PrivateProduction` or `Staging` or `PrivateStaging`. `Production` specifies the public endpoint & `PrivateProduction` specifies the private endpoint. | `string` | `"PrivateProduction"` | no |
132132
| <a name="input_logs_agent_iam_mode"></a> [logs\_agent\_iam\_mode](#input\_logs\_agent\_iam\_mode) | IAM authentication mode: `TrustedProfile` or `IAMAPIKey`. | `string` | `"TrustedProfile"` | no |
133-
| <a name="input_logs_agent_image_version"></a> [logs\_agent\_image\_version](#input\_logs\_agent\_image\_version) | The version of the Logs agent image to deploy. | `string` | `"1.6.2@sha256:dee214b548e063319f206c4c17e0015b57a9480031a89eb6125ce19a026bd116"` | no |
134-
| <a name="input_logs_agent_init_image_version"></a> [logs\_agent\_init\_image\_version](#input\_logs\_agent\_init\_image\_version) | The version of the Logs agent init container image to deploy. | `string` | `"1.6.2@sha256:d6f9964bbbe7c735b8e14a3496e30c403c067d3f729302eec6146626b117b515"` | no |
133+
| <a name="input_logs_agent_image_version"></a> [logs\_agent\_image\_version](#input\_logs\_agent\_image\_version) | The version of the Logs agent image to deploy. | `string` | `"1.6.3@sha256:c4c03d39002278558e7be9a7349a3408c703de788ebc7ef5846edf1f8f5e4584"` | no |
134+
| <a name="input_logs_agent_init_image_version"></a> [logs\_agent\_init\_image\_version](#input\_logs\_agent\_init\_image\_version) | The version of the Logs agent init container image to deploy. | `string` | `"1.6.3@sha256:0696d9be28088aad5ebcce26855d6de9abd7d4b0f8b98d050fb4507625ca465f"` | no |
135135
| <a name="input_logs_agent_log_source_namespaces"></a> [logs\_agent\_log\_source\_namespaces](#input\_logs\_agent\_log\_source\_namespaces) | The list of namespaces from which logs should be forwarded by agent. If namespaces are not listed, logs from all namespaces will be sent. | `list(string)` | `[]` | no |
136136
| <a name="input_logs_agent_name"></a> [logs\_agent\_name](#input\_logs\_agent\_name) | The name of the Logs agent. The name is used in all Kubernetes and Helm resources in the cluster. | `string` | `"logs-agent"` | no |
137137
| <a name="input_logs_agent_namespace"></a> [logs\_agent\_namespace](#input\_logs\_agent\_namespace) | The namespace where the Logs agent is deployed. The default value is `ibm-observe`. | `string` | `"ibm-observe"` | no |

examples/logs-agent-iks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ resource "time_sleep" "wait_operators" {
129129

130130
module "cloud_logs" {
131131
source = "terraform-ibm-modules/cloud-logs/ibm"
132-
version = "1.6.24"
132+
version = "1.6.25"
133133
resource_group_id = module.resource_group.resource_group_id
134134
plan = "standard"
135135
region = var.region

examples/logs-agent-ocp/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ data "ibm_container_cluster_config" "cluster_config" {
131131

132132
module "cloud_logs" {
133133
source = "terraform-ibm-modules/cloud-logs/ibm"
134-
version = "1.6.24"
134+
version = "1.6.25"
135135
resource_group_id = module.resource_group.resource_group_id
136136
plan = "standard"
137137
region = var.region

solutions/fully-configurable/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ variable "logs_agent_chart_location" {
6464
variable "logs_agent_chart_version" {
6565
description = "The version of the Helm chart to deploy."
6666
type = string
67-
default = "1.6.2" # datasource: icr.io/ibm/observe/logs-agent-helm
67+
default = "1.6.3" # datasource: icr.io/ibm/observe/logs-agent-helm
6868
nullable = false
6969
}
7070

7171
variable "logs_agent_init_image_version" {
7272
description = "The version of the Logs agent init container image to deploy."
7373
type = string
74-
default = "1.6.2@sha256:d6f9964bbbe7c735b8e14a3496e30c403c067d3f729302eec6146626b117b515" # datasource: icr.io/ibm/observe/logs-router-agent-init
74+
default = "1.6.3@sha256:0696d9be28088aad5ebcce26855d6de9abd7d4b0f8b98d050fb4507625ca465f" # datasource: icr.io/ibm/observe/logs-router-agent-init
7575
nullable = false
7676
}
7777

7878
variable "logs_agent_image_version" {
7979
description = "The version of the Logs agent image to deploy."
8080
type = string
81-
default = "1.6.2@sha256:dee214b548e063319f206c4c17e0015b57a9480031a89eb6125ce19a026bd116" # datasource: icr.io/ibm/observe/logs-router-agent
81+
default = "1.6.3@sha256:c4c03d39002278558e7be9a7349a3408c703de788ebc7ef5846edf1f8f5e4584" # datasource: icr.io/ibm/observe/logs-router-agent
8282
nullable = false
8383
}
8484

tests/resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ module "buckets" {
140140

141141
module "cloud_logs" {
142142
source = "terraform-ibm-modules/cloud-logs/ibm"
143-
version = "1.6.24"
143+
version = "1.6.25"
144144
resource_group_id = module.ocp_base.resource_group_id
145145
region = var.region
146146
instance_name = "${var.prefix}-cloud-logs"

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,21 @@ variable "logs_agent_chart_location" {
7272
variable "logs_agent_chart_version" {
7373
description = "The version of the Helm chart to deploy."
7474
type = string
75-
default = "1.6.2" # datasource: icr.io/ibm/observe/logs-agent-helm
75+
default = "1.6.3" # datasource: icr.io/ibm/observe/logs-agent-helm
7676
nullable = false
7777
}
7878

7979
variable "logs_agent_init_image_version" {
8080
description = "The version of the Logs agent init container image to deploy."
8181
type = string
82-
default = "1.6.2@sha256:d6f9964bbbe7c735b8e14a3496e30c403c067d3f729302eec6146626b117b515" # datasource: icr.io/ibm/observe/logs-router-agent-init
82+
default = "1.6.3@sha256:0696d9be28088aad5ebcce26855d6de9abd7d4b0f8b98d050fb4507625ca465f" # datasource: icr.io/ibm/observe/logs-router-agent-init
8383
nullable = false
8484
}
8585

8686
variable "logs_agent_image_version" {
8787
description = "The version of the Logs agent image to deploy."
8888
type = string
89-
default = "1.6.2@sha256:dee214b548e063319f206c4c17e0015b57a9480031a89eb6125ce19a026bd116" # datasource: icr.io/ibm/observe/logs-router-agent
89+
default = "1.6.3@sha256:c4c03d39002278558e7be9a7349a3408c703de788ebc7ef5846edf1f8f5e4584" # datasource: icr.io/ibm/observe/logs-router-agent
9090
nullable = false
9191
validation {
9292
condition = split("@", var.logs_agent_image_version)[0] == split("@", var.logs_agent_init_image_version)[0]

0 commit comments

Comments
 (0)