From 918d0098c677a2441a60b8ea32858e49daf51b89 Mon Sep 17 00:00:00 2001 From: Terraform IBM Modules Operations <106112202+terraform-ibm-modules-ops@users.noreply.github.com> Date: Fri, 14 Jun 2024 23:10:03 -0400 Subject: [PATCH] fix(deps): update terraform-module (#223) --- README.md | 2 +- examples/basic/main.tf | 2 +- examples/complete/main.tf | 6 +++--- examples/fscloud/main.tf | 6 +++--- main.tf | 2 +- solutions/standard/main.tf | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3778eb59..b6ffdd5f 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ To create service credentials, access the Event Notifications service, and acces | Name | Source | Version | |------|--------|---------| -| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.22.1 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.22.2 | ### Resources diff --git a/examples/basic/main.tf b/examples/basic/main.tf index 9968a35e..a5d79a13 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -4,7 +4,7 @@ module "resource_group" { source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.5" + version = "1.1.6" # if an existing resource group is not set (null) create a new one using prefix resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null existing_resource_group_name = var.resource_group diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 6d8d4774..021826ba 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -4,7 +4,7 @@ module "resource_group" { source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.5" + version = "1.1.6" # if an existing resource group is not set (null) create a new one using prefix resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null existing_resource_group_name = var.resource_group @@ -46,7 +46,7 @@ locals { module "cos" { source = "terraform-ibm-modules/cos/ibm" - version = "8.3.2" + version = "8.4.0" resource_group_id = module.resource_group.resource_group_id region = var.region cos_instance_name = "${var.prefix}-cos" @@ -86,7 +86,7 @@ resource "ibm_is_subnet" "testacc_subnet" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.22.1" + version = "1.22.2" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone representing VPC" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf index 89b993fe..bed52c5b 100644 --- a/examples/fscloud/main.tf +++ b/examples/fscloud/main.tf @@ -4,7 +4,7 @@ module "resource_group" { source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.5" + version = "1.1.6" # if an existing resource group is not set (null) create a new one using prefix resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null existing_resource_group_name = var.resource_group @@ -40,7 +40,7 @@ resource "ibm_is_subnet" "testacc_subnet" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.22.1" + version = "1.22.2" name = "${var.prefix}-VPC-network-zone" zone_description = "CBR Network zone representing VPC" account_id = data.ibm_iam_account_settings.iam_account_settings.account_id @@ -62,7 +62,7 @@ locals { module "cos" { source = "terraform-ibm-modules/cos/ibm//modules/fscloud" - version = "8.3.2" + version = "8.4.0" resource_group_id = module.resource_group.resource_group_id create_cos_instance = true cos_instance_name = "${var.prefix}-cos" diff --git a/main.tf b/main.tf index 51cc51fe..fdfaa41f 100644 --- a/main.tf +++ b/main.tf @@ -161,7 +161,7 @@ resource "time_sleep" "wait_for_kms_authorization_policy" { module "cbr_rule" { count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0 source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module" - version = "1.22.1" + version = "1.22.2" rule_description = var.cbr_rules[count.index].description enforcement_mode = var.cbr_rules[count.index].enforcement_mode rule_contexts = var.cbr_rules[count.index].rule_contexts diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf index 4054080a..f6e96d54 100644 --- a/solutions/standard/main.tf +++ b/solutions/standard/main.tf @@ -4,7 +4,7 @@ module "resource_group" { source = "terraform-ibm-modules/resource-group/ibm" - version = "1.1.5" + version = "1.1.6" resource_group_name = var.use_existing_resource_group == false ? var.resource_group_name : null existing_resource_group_name = var.use_existing_resource_group == true ? var.resource_group_name : null } @@ -82,7 +82,7 @@ locals { module "cos" { source = "terraform-ibm-modules/cos/ibm" - version = "8.3.2" + version = "8.4.0" create_cos_instance = var.existing_cos_instance_crn == null ? true : false create_cos_bucket = var.existing_cos_bucket_name == null ? true : false existing_cos_instance_id = var.existing_cos_instance_crn