Skip to content

Commit

Permalink
fix(deps): update terraform terraform-ibm-modules/kms-all-inclusive/i…
Browse files Browse the repository at this point in the history
…bm to v4.13.1 (#630)
  • Loading branch information
terraform-ibm-modules-ops authored Jun 3, 2024
1 parent 122e15f commit 078cc08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/advanced/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ locals {

module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.13.0"
version = "4.13.1"
key_protect_instance_name = "${var.prefix}-kp"
resource_group_id = module.resource_group.resource_group_id
enable_metrics = false
Expand Down
2 changes: 1 addition & 1 deletion solutions/secure-cross-regional-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module "kms" {
}
count = var.existing_kms_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.0"
version = "4.13.1"
create_key_protect_instance = false
region = var.kms_region
existing_kms_instance_guid = var.existing_kms_guid
Expand Down
2 changes: 1 addition & 1 deletion solutions/secure-regional-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module "kms" {
}
count = var.existing_kms_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.0"
version = "4.13.1"
create_key_protect_instance = false
region = var.kms_region
existing_kms_instance_guid = var.existing_kms_guid
Expand Down

0 comments on commit 078cc08

Please sign in to comment.