Skip to content

Commit 8514368

Browse files
fix(deps): update dependencies (#227)
1 parent 191942c commit 8514368

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ No modules.
119119
| <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 |
120120
| <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 |
121121
| <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 |
122-
| <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.7.0"` | no |
122+
| <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.7.1"` | no |
123123
| <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 |
124124
| <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 |
125125
| <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 |

common-dev-assets

examples/logs-agent-ocp/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ locals {
106106

107107
module "ocp_base" {
108108
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
109-
version = "3.75.3"
109+
version = "3.75.5"
110110
resource_group_id = module.resource_group.resource_group_id
111111
region = var.region
112112
tags = var.resource_tags
@@ -147,7 +147,7 @@ data "ibm_is_security_groups" "vpc_security_groups" {
147147
# The below code creates a VPE for Cloud logs in the provisioned VPC which allows the agent to access the private Cloud Logs Ingress endpoint.
148148
module "vpe" {
149149
source = "terraform-ibm-modules/vpe-gateway/ibm"
150-
version = "4.8.5"
150+
version = "4.8.6"
151151
region = var.region
152152
prefix = var.prefix
153153
vpc_id = ibm_is_vpc.vpc.id

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ variable "logs_agent_chart_location" {
9191
variable "logs_agent_chart_version" {
9292
description = "The version of the Helm chart to deploy."
9393
type = string
94-
default = "1.7.0" # datasource: icr.io/ibm-observe/logs-agent-helm
94+
default = "1.7.1" # datasource: icr.io/ibm-observe/logs-agent-helm
9595
nullable = false
9696
}
9797

tests/resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ locals {
7474

7575
module "ocp_base" {
7676
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
77-
version = "3.75.3"
77+
version = "3.75.5"
7878
resource_group_id = module.resource_group.resource_group_id
7979
region = var.region
8080
tags = var.resource_tags

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ 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.7.0" # datasource: icr.io/ibm-observe/logs-agent-helm
75+
default = "1.7.1" # datasource: icr.io/ibm-observe/logs-agent-helm
7676
nullable = false
7777
}
7878

0 commit comments

Comments
 (0)