Skip to content

Commit ee74d03

Browse files
fix(deps): update terraform-module (#369)
1 parent 60a3a40 commit ee74d03

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ You need the following permissions to run this module.
171171

172172
| Name | Source | Version |
173173
|------|--------|---------|
174-
| <a name="module_observability_agents"></a> [observability\_agents](#module\_observability\_agents) | terraform-ibm-modules/observability-agents/ibm | 2.3.3 |
175-
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.35.7 |
176-
| <a name="module_trusted_profile"></a> [trusted\_profile](#module\_trusted\_profile) | terraform-ibm-modules/trusted-profile/ibm | 1.0.4 |
174+
| <a name="module_observability_agents"></a> [observability\_agents](#module\_observability\_agents) | terraform-ibm-modules/observability-agents/ibm | 2.3.6 |
175+
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.36.0 |
176+
| <a name="module_trusted_profile"></a> [trusted\_profile](#module\_trusted\_profile) | terraform-ibm-modules/trusted-profile/ibm | 1.0.5 |
177177

178178
### Resources
179179

Diff for: examples/private-only-example/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ module "cbr_zone_schematics" {
191191

192192
module "observability_instances" {
193193
source = "terraform-ibm-modules/observability-instances/ibm"
194-
version = "3.3.1"
194+
version = "3.4.0"
195195
region = var.region
196196
resource_group_id = module.resource_group.resource_group_id
197197
cloud_logs_instance_name = "${var.prefix}-icl"
@@ -214,7 +214,7 @@ locals {
214214

215215
module "key_protect_all_inclusive" {
216216
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
217-
version = "4.17.1"
217+
version = "4.19.2"
218218
resource_group_id = module.resource_group.resource_group_id
219219
region = var.region
220220
key_protect_instance_name = "${var.prefix}-kp"

Diff for: main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ locals {
2323

2424
module "ocp_base" {
2525
source = "terraform-ibm-modules/base-ocp-vpc/ibm"
26-
version = "3.35.7"
26+
version = "3.36.0"
2727
cluster_name = var.cluster_name
2828
ocp_version = var.ocp_version
2929
resource_group_id = var.resource_group_id
@@ -73,7 +73,7 @@ locals {
7373
module "trusted_profile" {
7474
count = (var.logs_agent_enabled && var.logs_agent_iam_mode == "TrustedProfile" && var.existing_trusted_profile_id == null) ? 1 : 0
7575
source = "terraform-ibm-modules/trusted-profile/ibm"
76-
version = "1.0.4"
76+
version = "1.0.5"
7777
trusted_profile_name = "${var.cluster_name}-trusted-profile"
7878
trusted_profile_description = "Logs agent Trusted Profile"
7979
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agents and routers sending logs.
@@ -103,7 +103,7 @@ module "trusted_profile" {
103103
module "observability_agents" {
104104
count = var.logs_agent_enabled == true || var.cloud_monitoring_enabled == true ? 1 : 0
105105
source = "terraform-ibm-modules/observability-agents/ibm"
106-
version = "2.3.3"
106+
version = "2.3.6"
107107
cluster_id = module.ocp_base.cluster_id
108108
cluster_resource_group_id = var.resource_group_id
109109
cluster_config_endpoint_type = var.cluster_config_endpoint_type

0 commit comments

Comments
 (0)