diff --git a/README.md b/README.md index 2b5525cd..920e0426 100644 --- a/README.md +++ b/README.md @@ -115,13 +115,13 @@ No modules. | [logs\_agent\_additional\_metadata](#input\_logs\_agent\_additional\_metadata) | The list of additional metadata fields to add to the routed logs. |
list(object({
key = optional(string)
value = optional(string)
})) | `[]` | no |
| [logs\_agent\_chart](#input\_logs\_agent\_chart) | The name of the Helm chart to deploy. | `string` | `"logs-agent-helm"` | no |
| [logs\_agent\_chart\_location](#input\_logs\_agent\_chart\_location) | The location of the Logs agent helm chart. | `string` | `"oci://icr.io/ibm/observe"` | no |
-| [logs\_agent\_chart\_version](#input\_logs\_agent\_chart\_version) | The version of the Helm chart to deploy. | `string` | `"1.5.1"` | no |
+| [logs\_agent\_chart\_version](#input\_logs\_agent\_chart\_version) | The version of the Helm chart to deploy. | `string` | `"1.5.2"` | no |
| [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 |
| [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 |
| [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 |
| [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 |
| [logs\_agent\_iam\_mode](#input\_logs\_agent\_iam\_mode) | IAM authentication mode: `TrustedProfile` or `IAMAPIKey`. | `string` | `"TrustedProfile"` | no |
-| [logs\_agent\_image\_version](#input\_logs\_agent\_image\_version) | The version of the Logs agent image to deploy. | `string` | `"1.5.1"` | no |
+| [logs\_agent\_image\_version](#input\_logs\_agent\_image\_version) | The version of the Logs agent image to deploy. | `string` | `"1.5.2"` | no |
| [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 |
| [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 |
| [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 |
diff --git a/solutions/fully-configurable/variables.tf b/solutions/fully-configurable/variables.tf
index b926d1a1..d0db7eea 100644
--- a/solutions/fully-configurable/variables.tf
+++ b/solutions/fully-configurable/variables.tf
@@ -64,14 +64,14 @@ variable "logs_agent_chart_location" {
variable "logs_agent_chart_version" {
description = "The version of the Helm chart to deploy."
type = string
- default = "1.5.1" # datasource: icr.io/ibm/observe/logs-agent-helm
+ default = "1.5.2" # datasource: icr.io/ibm/observe/logs-agent-helm
nullable = false
}
variable "logs_agent_image_version" {
description = "The version of the Logs agent image to deploy."
type = string
- default = "1.5.1" # datasource: icr.io/ibm/observe/logs-agent-helm
+ default = "1.5.2" # datasource: icr.io/ibm/observe/logs-agent-helm
nullable = false
}
diff --git a/variables.tf b/variables.tf
index 656216d0..d76c8c70 100644
--- a/variables.tf
+++ b/variables.tf
@@ -72,14 +72,14 @@ variable "logs_agent_chart_location" {
variable "logs_agent_chart_version" {
description = "The version of the Helm chart to deploy."
type = string
- default = "1.5.1" # datasource: icr.io/ibm/observe/logs-agent-helm
+ default = "1.5.2" # datasource: icr.io/ibm/observe/logs-agent-helm
nullable = false
}
variable "logs_agent_image_version" {
description = "The version of the Logs agent image to deploy."
type = string
- default = "1.5.1" # datasource: icr.io/ibm/observe/logs-agent-helm
+ default = "1.5.2" # datasource: icr.io/ibm/observe/logs-agent-helm
nullable = false
}