From f5ea8a406f8b7658d16991647e84b1b72eb876be Mon Sep 17 00:00:00 2001 From: shemau Date: Sun, 27 Oct 2024 22:28:09 +0000 Subject: [PATCH] fix(deps): bump CBR and IBM provider --- README.md | 4 ++-- examples/basic/version.tf | 2 +- examples/complete/README.md | 2 +- examples/complete/version.tf | 2 +- examples/fscloud/main.tf | 2 +- examples/fscloud/version.tf | 2 +- main.tf | 2 +- version.tf | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 21afa35b..48751b92 100644 --- a/README.md +++ b/README.md @@ -68,14 +68,14 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= v1.0.0 | -| [ibm](#requirement\_ibm) | >= 1.65.0, <2.0.0 | +| [ibm](#requirement\_ibm) | >= 1.70.0, <2.0.0 | | [time](#requirement\_time) | >= 0.9.1, < 1.0.0 | ### Modules | Name | Source | Version | |------|--------|---------| -| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.27.0 | +| [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 | | [secrets](#module\_secrets) | ./modules/secrets | n/a | ### Resources diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 5f546712..a446f9b0 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -6,7 +6,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = "1.65.0" + version = "1.70.0" } } } diff --git a/examples/complete/README.md b/examples/complete/README.md index bf92f0bf..d707ff95 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -8,7 +8,7 @@ This examples handles the provisioning of a new Secrets Manager instance. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= v1.0.0 | -| [ibm](#requirement\_ibm) | >= 1.65.0 | +| [ibm](#requirement\_ibm) | >=1.70.0 | ### Modules diff --git a/examples/complete/version.tf b/examples/complete/version.tf index 02e85b3b..e8e34e2f 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -3,7 +3,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.65.0" + version = ">=1.70.0" } } } diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf index b8299ea3..c8ff5701 100644 --- a/examples/fscloud/main.tf +++ b/examples/fscloud/main.tf @@ -30,7 +30,7 @@ resource "ibm_is_vpc" "vpc" { ############################################################################## module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.27.0" + version = "1.28.1" name = "${var.prefix}-CBR-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/version.tf b/examples/fscloud/version.tf index 3aabcbae..05dee1cd 100644 --- a/examples/fscloud/version.tf +++ b/examples/fscloud/version.tf @@ -4,7 +4,7 @@ terraform { # Use latest version of provider in non-basic examples to verify latest version works with module ibm = { source = "IBM-Cloud/ibm" - version = ">=1.65.0, <2.0.0" + version = ">=1.70.0, <2.0.0" } } } diff --git a/main.tf b/main.tf index b08dd6f3..8f75b122 100644 --- a/main.tf +++ b/main.tf @@ -90,7 +90,7 @@ locals { 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.27.0" + version = "1.28.1" 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/version.tf b/version.tf index de4fe09d..f7cd0c46 100644 --- a/version.tf +++ b/version.tf @@ -4,7 +4,7 @@ terraform { # Use "greater than or equal to" range in modules ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.65.0, <2.0.0" + version = ">= 1.70.0, <2.0.0" } time = { source = "hashicorp/time"