diff --git a/examples/complete/README.md b/examples/complete/README.md
index 84e286b9..9571032c 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -16,7 +16,7 @@ This examples handles the provisioning of a new Secrets Manager instance.
| Name | Source | Version |
|------|--------|---------|
| [event\_notification](#module\_event\_notification) | terraform-ibm-modules/event-notifications/ibm | 1.18.5 |
-| [key\_protect](#module\_key\_protect) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.19.7 |
+| [key\_protect](#module\_key\_protect) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.19.8 |
| [resource\_group](#module\_resource\_group) | terraform-ibm-modules/resource-group/ibm | 1.1.6 |
| [secrets\_manager](#module\_secrets\_manager) | ../.. | n/a |
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index d90d4df5..50819d4f 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -8,7 +8,7 @@ module "resource_group" {
module "key_protect" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.19.7"
+ version = "4.19.8"
key_protect_instance_name = "${var.prefix}-key-protect"
resource_group_id = module.resource_group.resource_group_id
region = var.region
diff --git a/solutions/standard/main.tf b/solutions/standard/main.tf
index 6b6eddd7..987c27c3 100644
--- a/solutions/standard/main.tf
+++ b/solutions/standard/main.tf
@@ -65,7 +65,7 @@ module "kms" {
}
count = var.existing_secrets_manager_crn != null || var.existing_secrets_manager_kms_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key, or bucket
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.19.7"
+ version = "4.19.8"
create_key_protect_instance = false
region = local.kms_region
existing_kms_instance_crn = var.existing_kms_instance_crn
diff --git a/tests/existing-resources/main.tf b/tests/existing-resources/main.tf
index f364f5cc..2f4aec6c 100644
--- a/tests/existing-resources/main.tf
+++ b/tests/existing-resources/main.tf
@@ -31,7 +31,7 @@ module "event_notifications" {
module "key_protect" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
- version = "4.19.7"
+ version = "4.19.8"
key_protect_instance_name = "${var.prefix}-key-protect"
resource_group_id = module.resource_group.resource_group_id
region = var.region