Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit e77e660

Browse files
fix(deps): update terraform-module (#303)
* fix(deps): update terraform-module * disable cloud logs provision --------- Co-authored-by: aashiq.jacob@ibm.com <aashiq.jacob@ibm.com>
1 parent 3b9f13c commit e77e660

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ You need the following permissions to run this module.
127127

128128
| Name | Source | Version |
129129
|------|--------|---------|
130-
| <a name="module_observability_agents"></a> [observability\_agents](#module\_observability\_agents) | terraform-ibm-modules/observability-agents/ibm | 1.28.3 |
131-
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.28.1 |
130+
| <a name="module_observability_agents"></a> [observability\_agents](#module\_observability\_agents) | terraform-ibm-modules/observability-agents/ibm | 1.28.6 |
131+
| <a name="module_ocp_base"></a> [ocp\_base](#module\_ocp\_base) | terraform-ibm-modules/base-ocp-vpc/ibm | 3.29.1 |
132132

133133
### Resources
134134

examples/end-to-end-example/main.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ module "vpc" {
154154

155155
module "observability_instances" {
156156
source = "terraform-ibm-modules/observability-instances/ibm"
157-
version = "2.13.2"
157+
version = "2.14.0"
158158
providers = {
159159
logdna.at = logdna.at
160160
logdna.ld = logdna.ld
@@ -168,6 +168,7 @@ module "observability_instances" {
168168
cloud_monitoring_plan = "graduated-tier"
169169
enable_platform_logs = false
170170
enable_platform_metrics = false
171+
cloud_logs_provision = false
171172
log_analysis_tags = var.resource_tags
172173
cloud_monitoring_tags = var.resource_tags
173174
}
@@ -183,7 +184,7 @@ locals {
183184

184185
module "key_protect_all_inclusive" {
185186
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
186-
version = "4.15.2"
187+
version = "4.15.6"
187188
resource_group_id = module.resource_group.resource_group_id
188189
region = var.region
189190
key_protect_instance_name = "${var.prefix}-kp"

main.tf

Lines changed: 2 additions & 2 deletions
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.28.1"
26+
version = "3.29.1"
2727
cluster_name = var.cluster_name
2828
ocp_version = var.ocp_version
2929
resource_group_id = var.resource_group_id
@@ -62,7 +62,7 @@ module "ocp_base" {
6262
module "observability_agents" {
6363
count = var.log_analysis_enabled == true || var.cloud_monitoring_enabled == true ? 1 : 0
6464
source = "terraform-ibm-modules/observability-agents/ibm"
65-
version = "1.28.3"
65+
version = "1.28.6"
6666
cluster_id = module.ocp_base.cluster_id
6767
cluster_resource_group_id = var.resource_group_id
6868
cluster_config_endpoint_type = var.cluster_config_endpoint_type

0 commit comments

Comments
 (0)