Skip to content

Commit fd0ace7

Browse files
fix(deps): update terraform-module (#306)
1 parent 1ec6f34 commit fd0ace7

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.13"
24+
version = "4.16.0"
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.14"
49+
version = "8.11.15"
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.14"
80+
version = "8.11.15"
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
@@ -78,7 +78,7 @@ module "kms" {
7878
}
7979
count = local.create_kms_keys ? 1 : 0
8080
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
81-
version = "4.15.13"
81+
version = "4.16.0"
8282
create_key_protect_instance = false
8383
region = local.kms_region
8484
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -134,7 +134,7 @@ locals {
134134
module "cos" {
135135
count = local.create_cos_bucket ? 1 : 0
136136
source = "terraform-ibm-modules/cos/ibm"
137-
version = "8.11.14"
137+
version = "8.11.15"
138138
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
139139
create_cos_bucket = local.create_cos_bucket
140140
existing_cos_instance_id = var.existing_cos_instance_crn

0 commit comments

Comments
 (0)