diff --git a/README.md b/README.md index 9c9c731a..a5f85282 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.0.0 | -| [ibm](#requirement\_ibm) | >= 1.49.0 | +| [ibm](#requirement\_ibm) | >= 1.51.0 | | [null](#requirement\_null) | >=3.2.1 | ## Modules diff --git a/examples/complete/version.tf b/examples/complete/version.tf index 3d43bfe9..7126a2e2 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module to ensure lowest version still works ibm = { source = "ibm-cloud/ibm" - version = "1.49.0" + version = "1.51.0" } # The restapi provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version restapi = { diff --git a/examples/existing-resources/version.tf b/examples/existing-resources/version.tf index ed128ec8..5a5e8d2b 100644 --- a/examples/existing-resources/version.tf +++ b/examples/existing-resources/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module to ensure lowest version still works ibm = { source = "ibm-cloud/ibm" - version = "1.49.0" + version = "1.51.0" } # The restapi provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version restapi = { diff --git a/examples/replication/main.tf b/examples/replication/main.tf index 552bf00d..46862801 100644 --- a/examples/replication/main.tf +++ b/examples/replication/main.tf @@ -11,9 +11,8 @@ module "resource_group" { # Create COS source bucket module "cos_source_bucket" { - source = "../../" - # bucket_name = "${var.prefix}-bucket-source" # temporary override to match ibm_cos_bucket_replication_rule regex - bucket_name = "cos-replicate-bucket-source" + source = "../../" + bucket_name = "${var.prefix}-bucket-source" resource_group_id = module.resource_group.resource_group_id region = var.region cos_instance_name = "${var.prefix}-source-cos" @@ -27,9 +26,8 @@ module "cos_source_bucket" { # Create COS target bucket module "cos_target_bucket" { - source = "../../" - # bucket_name = "${var.prefix}-bucket-target" # temporary override to match ibm_cos_bucket_replication_rule regex - bucket_name = "cos-replicate-bucket-target" + source = "../../" + bucket_name = "${var.prefix}-bucket-target" resource_group_id = module.resource_group.resource_group_id region = var.region cos_instance_name = "${var.prefix}-target-cos" diff --git a/examples/replication/version.tf b/examples/replication/version.tf index 1a98f547..865b0e1a 100644 --- a/examples/replication/version.tf +++ b/examples/replication/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module to ensure lowest version still works ibm = { source = "ibm-cloud/ibm" - version = "1.49.0" + version = "1.51.0" } } } diff --git a/module-metadata.json b/module-metadata.json index 63155b9a..c2f9c278 100644 --- a/module-metadata.json +++ b/module-metadata.json @@ -549,7 +549,7 @@ "ibm": { "source": "ibm-cloud/ibm", "version_constraints": [ - "\u003e= 1.49.0" + "\u003e= 1.51.0" ] }, "null": { diff --git a/version.tf b/version.tf index f8011a66..e0ac1b24 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.49.0" + version = ">= 1.51.0" } null = { source = "hashicorp/null"