diff --git a/examples/complete/README.md b/examples/complete/README.md
index 75af3355..a9a6b58f 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -15,7 +15,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.15.0 |
-| [key\_protect](#module\_key\_protect) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.17.0 |
+| [key\_protect](#module\_key\_protect) | terraform-ibm-modules/kms-all-inclusive/ibm | 4.17.1 |
| [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 3f7b768f..018603ef 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.17.0"
+ version = "4.17.1"
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 60e8466e..fa65d786 100644
--- a/solutions/standard/main.tf
+++ b/solutions/standard/main.tf
@@ -64,7 +64,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.17.0"
+ version = "4.17.1"
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 e93fe1f2..7c39838e 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.17.0"
+ version = "4.17.1"
key_protect_instance_name = "${var.prefix}-key-protect"
resource_group_id = module.resource_group.resource_group_id
region = var.region