Skip to content

Commit d95a4f0

Browse files
fix(deps): update terraform-module (#288)
1 parent 1fa0288 commit d95a4f0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/complete/main.tf

Lines changed: 2 additions & 2 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.15.10"
24+
version = "4.15.11"
2525
resource_group_id = module.resource_group.resource_group_id
2626
region = var.region
2727
key_protect_instance_name = "${var.prefix}-kp"
@@ -46,7 +46,7 @@ locals {
4646

4747
module "cos" {
4848
source = "terraform-ibm-modules/cos/ibm"
49-
version = "8.11.5"
49+
version = "8.11.6"
5050
resource_group_id = module.resource_group.resource_group_id
5151
region = var.region
5252
cos_instance_name = "${var.prefix}-cos"

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ locals {
7777

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

solutions/standard/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module "kms" {
7575
}
7676
count = var.existing_kms_root_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
7777
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
78-
version = "4.15.10"
78+
version = "4.15.11"
7979
create_key_protect_instance = false
8080
region = local.kms_region
8181
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -129,7 +129,7 @@ locals {
129129
module "cos" {
130130
count = var.existing_cos_bucket_name != null ? 0 : 1
131131
source = "terraform-ibm-modules/cos/ibm"
132-
version = "8.11.5"
132+
version = "8.11.6"
133133
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
134134
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
135135
existing_cos_instance_id = var.existing_cos_instance_crn

0 commit comments

Comments
 (0)