Skip to content

Commit

Permalink
fix(deps): update terraform-module (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Jun 22, 2024
1 parent d2dbcd6 commit 2979df4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ locals {

module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.13.2"
version = "4.13.4"
resource_group_id = module.resource_group.resource_group_id
region = var.region
key_protect_instance_name = "${var.prefix}-kp"
Expand All @@ -46,7 +46,7 @@ locals {

module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.4.1"
version = "8.5.0"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cos_instance_name = "${var.prefix}-cos"
Expand Down
2 changes: 1 addition & 1 deletion examples/fscloud/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ locals {

module "cos" {
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
version = "8.4.1"
version = "8.5.0"
resource_group_id = module.resource_group.resource_group_id
create_cos_instance = true
cos_instance_name = "${var.prefix}-cos"
Expand Down
4 changes: 2 additions & 2 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module "kms" {
}
count = var.existing_kms_root_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.13.2"
version = "4.13.4"
create_key_protect_instance = false
region = local.kms_region
existing_kms_instance_guid = var.existing_kms_instance_crn
Expand Down Expand Up @@ -89,7 +89,7 @@ locals {
module "cos" {
count = var.existing_cos_bucket_name != null ? 0 : 1
source = "terraform-ibm-modules/cos/ibm"
version = "8.4.1"
version = "8.5.0"
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
existing_cos_instance_id = var.existing_cos_instance_crn
Expand Down

0 comments on commit 2979df4

Please sign in to comment.