Skip to content

Commit 0ca0e2c

Browse files
authored
fix: updated required IBM provider version to >= 1.70.0, < 2.0.0<br>- updated CBR module to 1.28.1 (#439)
1 parent 125fbc5 commit 0ca0e2c

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ You need the following permissions to run this module.
5656
| Name | Version |
5757
|------|---------|
5858
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
59-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.68.1, < 2.0.0 |
59+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.70.0, < 2.0.0 |
6060
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1, < 1.0.0 |
6161

6262
### Modules
6363

6464
| Name | Source | Version |
6565
|------|--------|---------|
66-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.27.0 |
66+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 |
6767

6868
### Resources
6969

examples/backup-restore/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Use latest version of provider in non-basic examples to verify latest version works with module
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">=1.61.0, <2.0.0"
7+
version = ">=1.70.0, <2.0.0"
88
}
99
}
1010
}

examples/basic/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Use latest version of provider in non-basic examples to verify latest version works with module
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.68.1"
7+
version = "1.70.0"
88
}
99
}
1010
}

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
6565
##############################################################################
6666
module "cbr_zone" {
6767
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
68-
version = "1.27.0"
68+
version = "1.28.1"
6969
name = "${var.prefix}-VPC-network-zone"
7070
zone_description = "CBR Network zone containing VPC"
7171
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

examples/complete/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Use latest version of provider in non-basic examples to verify latest version works with module
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">=1.68.1, <2.0.0"
7+
version = ">=1.70.0, <2.0.0"
88
}
99
}
1010
}

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
3939
##############################################################################
4040
module "cbr_zone" {
4141
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
42-
version = "1.27.0"
42+
version = "1.28.1"
4343
name = "${var.prefix}-VPC-network-zone"
4444
zone_description = "CBR Network zone containing VPC"
4545
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

examples/fscloud/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Use latest version of provider in non-basic examples to verify latest version works with module
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">=1.68.1, <2.0.0"
7+
version = ">=1.70.0, <2.0.0"
88
}
99
}
1010
}

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ resource "ibm_resource_tag" "mongodb_tag" {
195195
module "cbr_rule" {
196196
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
197197
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
198-
version = "1.27.0"
198+
version = "1.28.1"
199199
rule_description = var.cbr_rules[count.index].description
200200
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
201201
rule_contexts = var.cbr_rules[count.index].rule_contexts

modules/fscloud/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The IBM Cloud Framework for Financial Services mandates the application of an in
1414
| Name | Version |
1515
|------|---------|
1616
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
17-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >=1.68.1, <2.0.0 |
17+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >=1.70.0, <2.0.0 |
1818

1919
### Modules
2020

modules/fscloud/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
ibm = {
99
source = "IBM-Cloud/ibm"
1010
# Use "greater than or equal to" range in modules
11-
version = ">=1.68.1, <2.0.0"
11+
version = ">=1.70.0, <2.0.0"
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)