diff --git a/README.md b/README.md index 6370013..04495c2 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ statement instead the previous block. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [ibm](#requirement\_ibm) | >= 1.79.0, <2.0.0 | +| [ibm](#requirement\_ibm) | >= 1.79.2, <2.0.0 | | [restapi](#requirement\_restapi) | >=1.20.0, <2.0.0 | ### Modules diff --git a/examples/advanced/version.tf b/examples/advanced/version.tf index dee15e3..d0d001c 100644 --- a/examples/advanced/version.tf +++ b/examples/advanced/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.79.0, <2.0.0" + version = ">=1.79.2, <2.0.0" } restapi = { source = "Mastercard/restapi" diff --git a/examples/basic/version.tf b/examples/basic/version.tf index d2a2f05..6a39060 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.79.0" + version = "1.79.2" } restapi = { source = "Mastercard/restapi" diff --git a/examples/enterprise/version.tf b/examples/enterprise/version.tf index 2b3cd81..e5a948d 100644 --- a/examples/enterprise/version.tf +++ b/examples/enterprise/version.tf @@ -3,7 +3,7 @@ terraform { required_providers { ibm = { source = "ibm-cloud/ibm" - version = ">= 1.79.0, < 2.0.0" + version = ">= 1.79.2, < 2.0.0" } restapi = { source = "Mastercard/restapi" diff --git a/solutions/fully-configurable/README.md b/solutions/fully-configurable/README.md index 911e1c8..63b07fe 100644 --- a/solutions/fully-configurable/README.md +++ b/solutions/fully-configurable/README.md @@ -19,7 +19,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.9.0 | -| [ibm](#requirement\_ibm) | 1.79.0 | +| [ibm](#requirement\_ibm) | 1.79.2 | | [restapi](#requirement\_restapi) | 1.20.0 | ### Modules @@ -33,7 +33,7 @@ There is currently a [known issue](https://github.com/terraform-ibm-modules/terr | Name | Type | |------|------| -| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.79.0/docs/data-sources/iam_auth_token) | data source | +| [ibm_iam_auth_token.auth_token](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.79.2/docs/data-sources/iam_auth_token) | data source | ### Inputs diff --git a/solutions/fully-configurable/version.tf b/solutions/fully-configurable/version.tf index 5a5e1d9..0efccc2 100644 --- a/solutions/fully-configurable/version.tf +++ b/solutions/fully-configurable/version.tf @@ -4,7 +4,7 @@ terraform { required_providers { ibm = { source = "IBM-Cloud/ibm" - version = "1.79.0" + version = "1.79.2" } restapi = { source = "Mastercard/restapi" diff --git a/tests/existing-resources/version.tf b/tests/existing-resources/version.tf index cb78343..7047f4a 100644 --- a/tests/existing-resources/version.tf +++ b/tests/existing-resources/version.tf @@ -3,7 +3,7 @@ terraform { required_providers { ibm = { source = "ibm-cloud/ibm" - version = ">= 1.79.0" + version = ">= 1.79.2" } } } diff --git a/version.tf b/version.tf index 423490c..4ab675f 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.79.0, <2.0.0" + version = ">= 1.79.2, <2.0.0" } restapi = { source = "Mastercard/restapi"