Skip to content

Commit ffc908c

Browse files
authored
fix(deps): updated DA to the latest KMS module version, and removed force_delete_key_ring as it is deprecated (#503)
1 parent d70eaae commit ffc908c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "key_protect_all_inclusive" {
1818
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
19-
version = "4.15.13"
19+
version = "4.16.4"
2020
resource_group_id = module.resource_group.resource_group_id
2121
# Note: Database instance and Key Protect must be created in the same region when using BYOK
2222
# See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok

solutions/standard/main.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,16 @@ module "kms" {
6161
}
6262
count = var.existing_kms_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
6363
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
64-
version = "4.15.13"
64+
version = "4.16.4"
6565
create_key_protect_instance = false
6666
region = local.existing_kms_instance_region
6767
existing_kms_instance_crn = var.existing_kms_instance_crn
6868
key_ring_endpoint_type = var.kms_endpoint_type
6969
key_endpoint_type = var.kms_endpoint_type
7070
keys = [
7171
{
72-
key_ring_name = local.key_ring_name
73-
existing_key_ring = false
74-
force_delete_key_ring = true
72+
key_ring_name = local.key_ring_name
73+
existing_key_ring = false
7574
keys = [
7675
{
7776
key_name = local.key_name

0 commit comments

Comments
 (0)