diff --git a/README.md b/README.md index b306c1be..ae53962f 100644 --- a/README.md +++ b/README.md @@ -85,14 +85,14 @@ To attach access management tags to resources in this module, you need the follo | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0 | -| [ibm](#requirement\_ibm) | >= 1.68.1, < 2.0.0 | +| [ibm](#requirement\_ibm) | >= 1.70.0, < 2.0.0 | | [time](#requirement\_time) | >= 0.9.1 | ### 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 | ### Resources diff --git a/examples/backup/version.tf b/examples/backup/version.tf index ffaeed38..56d317dc 100644 --- a/examples/backup/version.tf +++ b/examples/backup/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.68.1" + version = ">= 1.70.0" } } } diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 2de17c51..6b7db7a2 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works ibm = { source = "IBM-Cloud/ibm" - version = "1.68.1" + version = "1.70.0" } time = { diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 8d4d9dc6..598f9ac2 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -16,7 +16,7 @@ module "resource_group" { module "key_protect_all_inclusive" { source = "terraform-ibm-modules/kms-all-inclusive/ibm" - version = "4.16.4" + version = "4.16.7" resource_group_id = module.resource_group.resource_group_id # Note: Database instance and Key Protect must be created in the same region when using BYOK # See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok @@ -78,7 +78,7 @@ resource "time_sleep" "wait_30_seconds" { module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.27.0" + version = "1.28.1" 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/complete/version.tf b/examples/complete/version.tf index 8500c688..f8ff8043 100644 --- a/examples/complete/version.tf +++ b/examples/complete/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.68.1" + version = ">= 1.70.0" } time = { source = "hashicorp/time" diff --git a/examples/fscloud/main.tf b/examples/fscloud/main.tf index cc97053d..9e4917ff 100644 --- a/examples/fscloud/main.tf +++ b/examples/fscloud/main.tf @@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" { ############################################################################## module "cbr_zone" { source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module" - version = "1.27.0" + version = "1.28.1" 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/version.tf b/examples/fscloud/version.tf index ffaeed38..56d317dc 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.68.1" + version = ">= 1.70.0" } } } diff --git a/examples/pitr/version.tf b/examples/pitr/version.tf index ffaeed38..56d317dc 100644 --- a/examples/pitr/version.tf +++ b/examples/pitr/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.68.1" + version = ">= 1.70.0" } } } diff --git a/main.tf b/main.tf index 30067e3a..5b4a79d6 100644 --- a/main.tf +++ b/main.tf @@ -208,7 +208,7 @@ resource "ibm_resource_tag" "mysql_tag" { 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/modules/fscloud/README.md b/modules/fscloud/README.md index 03afdc13..edb10590 100644 --- a/modules/fscloud/README.md +++ b/modules/fscloud/README.md @@ -14,7 +14,7 @@ The IBM Cloud Framework for Financial Services mandates the application of an in | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0 | -| [ibm](#requirement\_ibm) | >= 1.68.1 | +| [ibm](#requirement\_ibm) | >= 1.70.0 | ### Modules diff --git a/modules/fscloud/version.tf b/modules/fscloud/version.tf index fdf0fc93..ce4065c5 100644 --- a/modules/fscloud/version.tf +++ b/modules/fscloud/version.tf @@ -8,7 +8,7 @@ terraform { ibm = { source = "IBM-Cloud/ibm" # Use "greater than or equal to" range in modules - version = ">= 1.68.1" + version = ">= 1.70.0" } } } diff --git a/version.tf b/version.tf index 95b4e3c7..e6a9cf60 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.68.1, < 2.0.0" + version = ">= 1.70.0, < 2.0.0" } time = { source = "hashicorp/time"