diff --git a/README.md b/README.md index b40d7c2..23ff68c 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ No modules. | [cluster\_resource\_group\_id](#input\_cluster\_resource\_group\_id) | Resource group of the cluster | `string` | n/a | yes | | [logdna\_add\_cluster\_name](#input\_logdna\_add\_cluster\_name) | If true, configure the logdna agent to attach a tag containing the cluster name to all log messages. | `bool` | `true` | no | | [logdna\_agent\_tags](#input\_logdna\_agent\_tags) | array of tags to group the host logs pushed by the logdna agent | `list(string)` | `[]` | no | -| [logdna\_agent\_version](#input\_logdna\_agent\_version) | Version of the agent to deploy. To lookup version run: `ibmcloud cr images --restrict ext/logdna-agent`. If null, the default value is used. | `string` | `"3.8.8-20230922.cc92b95fe91f7384"` | no | +| [logdna\_agent\_version](#input\_logdna\_agent\_version) | Version of the agent to deploy. To lookup version run: `ibmcloud cr images --restrict ext/logdna-agent`. If null, the default value is used. | `string` | `"3.8.8-20230925.777effed9e141e1d"` | no | | [logdna\_enabled](#input\_logdna\_enabled) | Deploy IBM Cloud Logging agent | `bool` | `true` | no | | [logdna\_ingestion\_key](#input\_logdna\_ingestion\_key) | Ingestion key for the IBM Cloud Logging agent to communicate with the instance | `string` | `null` | no | | [logdna\_instance\_name](#input\_logdna\_instance\_name) | IBM Cloud Logging instance to use. Required if LogDNA is enabled | `string` | `null` | no | diff --git a/chart/logdna-agent/values.yaml b/chart/logdna-agent/values.yaml index b37684a..c64c853 100644 --- a/chart/logdna-agent/values.yaml +++ b/chart/logdna-agent/values.yaml @@ -3,7 +3,7 @@ metadata: image: repository: "ext/logdna-agent" # renovate: datasource=docker depName=icr.io/ext/logdna-agent versioning=regex:^(?\d+)\.(?\d+)\.(?\d+)-(?\d{8}).\w+?$ - tag: "3.8.8-20230922.cc92b95fe91f7384" + tag: "3.8.8-20230925.777effed9e141e1d" registry: icr.io env: region: "ca-tor" diff --git a/module-metadata.json b/module-metadata.json index 16682f3..0842842 100644 --- a/module-metadata.json +++ b/module-metadata.json @@ -59,7 +59,7 @@ "name": "logdna_agent_version", "type": "string", "description": "Version of the agent to deploy. To lookup version run: `ibmcloud cr images --restrict ext/logdna-agent`. If null, the default value is used.", - "default": "3.8.8-20230922.cc92b95fe91f7384", + "default": "3.8.8-20230925.777effed9e141e1d", "pos": { "filename": "variables.tf", "line": 34 diff --git a/variables.tf b/variables.tf index 4902b59..df20d9b 100644 --- a/variables.tf +++ b/variables.tf @@ -35,7 +35,7 @@ variable "logdna_agent_version" { type = string description = "Version of the agent to deploy. To lookup version run: `ibmcloud cr images --restrict ext/logdna-agent`. If null, the default value is used." # renovate: datasource=docker depName=icr.io/ext/logdna-agent versioning=regex:^(?\d+)\.(?\d+)\.(?\d+)-(?\d{8}).\w+?$ - default = "3.8.8-20230922.cc92b95fe91f7384" + default = "3.8.8-20230925.777effed9e141e1d" nullable = false }