diff --git a/examples/complete/README.md b/examples/complete/README.md
index 4429de2c..70618a44 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -34,7 +34,7 @@ This examples handles the provisioning of a new Secrets Manager instance.
| [en\_region](#input\_en\_region) | Region where event notification will be created | `string` | `"au-syd"` | no |
| [ibmcloud\_api\_key](#input\_ibmcloud\_api\_key) | The IBM Cloud API key this account authenticates to | `string` | n/a | yes |
| [prefix](#input\_prefix) | Prefix for sm instance | `string` | `"sm-com"` | no |
-| [region](#input\_region) | Region where resources will be created | `string` | `"au-syd"` | no |
+| [region](#input\_region) | Region where resources will be created | `string` | `"eu-de"` | no |
| [resource\_group](#input\_resource\_group) | An existing resource group name to use for this example, if unset a new resource group will be created | `string` | `null` | no |
| [resource\_tags](#input\_resource\_tags) | Optional list of tags to be added to created resources | `list(string)` | `[]` | no |
| [sm\_service\_plan](#input\_sm\_service\_plan) | The Secrets Manager service plan to provision | `string` | `"trial"` | no |
diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf
index 09fd34cd..ae1c3008 100644
--- a/examples/complete/variables.tf
+++ b/examples/complete/variables.tf
@@ -18,7 +18,7 @@ variable "sm_service_plan" {
variable "region" {
type = string
description = "Region where resources will be created"
- default = "au-syd"
+ default = "eu-de"
}
variable "resource_group" {
diff --git a/tests/pr_test.go b/tests/pr_test.go
index eaf7ee32..02678123 100644
--- a/tests/pr_test.go
+++ b/tests/pr_test.go
@@ -36,9 +36,9 @@ var permanentResources map[string]interface{}
// Current supported Event Notification regions
var validRegions = []string{
// "us-south", # do not run secrets manager tests in us regions
- // "eu-de",
+ "eu-de", // all tests using KMS should run in the same region https://github.ibm.com/GoldenEye/issues/issues/12725
// "eu-gb",
- "au-syd", // all tests using KMS should avoid dallas and EU regions https://github.ibm.com/GoldenEye/issues/issues/12725
+ // "au-syd",
}
// TestMain will be run before any parallel tests, used to read data from yaml for use with tests