Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 68a7c2b

Browse files
authoredJun 4, 2024
chore: force delete kms key during testing (#209)
1 parent 4d3f137 commit 68a7c2b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎examples/complete/main.tf

Lines changed: 5 additions & 3 deletions
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.13.0"
19+
version = "4.13.1"
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
@@ -25,10 +25,12 @@ module "key_protect_all_inclusive" {
2525
resource_tags = var.resource_tags
2626
keys = [
2727
{
28-
key_ring_name = "icd-edb"
28+
key_ring_name = "icd-edb"
29+
force_delete_key_ring = true
2930
keys = [
3031
{
31-
key_name = "${var.prefix}-edb"
32+
key_name = "${var.prefix}-edb"
33+
force_delete = true
3234
}
3335
]
3436
}

0 commit comments

Comments
 (0)
This repository has been archived.