Skip to content

Commit c74ff33

Browse files
fix(deps): update terraform-module (#335)
1 parent de33f8c commit c74ff33

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To create service credentials, access the Event Notifications service, and acces
7676

7777
| Name | Source | Version |
7878
|------|--------|---------|
79-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 |
79+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.29.0 |
8080

8181
### Resources
8282

examples/complete/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121

2222
module "key_protect_all_inclusive" {
2323
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
24-
version = "4.16.9"
24+
version = "4.16.10"
2525
resource_group_id = module.resource_group.resource_group_id
2626
region = var.region
2727
key_protect_instance_name = "${var.prefix}-kp"
@@ -45,7 +45,7 @@ locals {
4545

4646
module "cos" {
4747
source = "terraform-ibm-modules/cos/ibm"
48-
version = "8.14.5"
48+
version = "8.15.1"
4949
resource_group_id = module.resource_group.resource_group_id
5050
region = var.region
5151
cos_instance_name = "${var.prefix}-cos"
@@ -85,7 +85,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
8585

8686
module "cbr_vpc_zone" {
8787
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
88-
version = "1.28.1"
88+
version = "1.29.0"
8989
name = "${var.prefix}-VPC-network-zone"
9090
zone_description = "CBR Network zone representing VPC"
9191
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -97,7 +97,7 @@ module "cbr_vpc_zone" {
9797

9898
module "cbr_zone_schematics" {
9999
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
100-
version = "1.28.1"
100+
version = "1.29.0"
101101
name = "${var.prefix}-schematics-zone"
102102
zone_description = "CBR Network zone containing Schematics"
103103
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

examples/fscloud/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
4040

4141
module "cbr_vpc_zone" {
4242
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
43-
version = "1.28.1"
43+
version = "1.29.0"
4444
name = "${var.prefix}-VPC-network-zone"
4545
zone_description = "CBR Network zone representing VPC"
4646
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -52,7 +52,7 @@ module "cbr_vpc_zone" {
5252

5353
module "cbr_zone_schematics" {
5454
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
55-
version = "1.28.1"
55+
version = "1.29.0"
5656
name = "${var.prefix}-schematics-zone"
5757
zone_description = "CBR Network zone containing Schematics"
5858
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -77,7 +77,7 @@ locals {
7777

7878
module "cos" {
7979
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
80-
version = "8.14.5"
80+
version = "8.15.1"
8181
resource_group_id = module.resource_group.resource_group_id
8282
create_cos_instance = true
8383
cos_instance_name = "${var.prefix}-cos"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ resource "time_sleep" "wait_for_kms_authorization_policy" {
184184
module "cbr_rule" {
185185
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
186186
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
187-
version = "1.28.1"
187+
version = "1.29.0"
188188
rule_description = var.cbr_rules[count.index].description
189189
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
190190
rule_contexts = var.cbr_rules[count.index].rule_contexts

solutions/standard/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ module "kms" {
199199
}
200200
count = local.create_kms_keys ? 1 : 0
201201
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
202-
version = "4.16.9"
202+
version = "4.16.10"
203203
create_key_protect_instance = false
204204
region = local.kms_region
205205
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -247,7 +247,7 @@ locals {
247247
module "cos" {
248248
count = local.create_cos_bucket ? 1 : 0
249249
source = "terraform-ibm-modules/cos/ibm"
250-
version = "8.14.5"
250+
version = "8.15.1"
251251
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
252252
create_cos_bucket = local.create_cos_bucket
253253
existing_cos_instance_id = var.existing_cos_instance_crn

tests/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module "event_notification" {
1818

1919
module "cos" {
2020
source = "terraform-ibm-modules/cos/ibm"
21-
version = "8.14.5"
21+
version = "8.15.1"
2222
resource_group_id = module.resource_group.resource_group_id
2323
region = var.region
2424
cos_instance_name = "${var.prefix}-cos"

0 commit comments

Comments
 (0)