Skip to content

Commit

Permalink
fix(deps): update terraform-module (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Dec 28, 2024
1 parent 77f15b6 commit 70212e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "resource_group" {

module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.15.13"
version = "8.16.0"
cos_instance_name = "${var.prefix}-cos"
kms_encryption_enabled = false
retention_enabled = false
Expand Down
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "resource_group" {
module "cos" {
count = var.existing_scc_instance_crn == null ? 1 : 0
source = "terraform-ibm-modules/cos/ibm"
version = "8.15.13"
version = "8.16.0"
cos_instance_name = "${var.prefix}-cos"
kms_encryption_enabled = false
retention_enabled = false
Expand All @@ -30,7 +30,7 @@ module "cos" {

module "event_notification" {
source = "terraform-ibm-modules/event-notifications/ibm"
version = "1.15.6"
version = "1.15.8"
resource_group_id = module.resource_group.resource_group_id
name = "${var.prefix}-en"
tags = var.resource_tags
Expand Down
2 changes: 1 addition & 1 deletion tests/existing-resources/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "resource_group" {

module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.15.13"
version = "8.16.0"
cos_instance_name = "${var.prefix}-cos"
kms_encryption_enabled = false
retention_enabled = false
Expand Down

0 comments on commit 70212e6

Please sign in to comment.