Skip to content

Commit 1a9b567

Browse files
authored
ci: eu-de (#313)
1 parent 5c52795 commit 1a9b567

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This examples handles the provisioning of a new Secrets Manager instance.
3434
| <a name="input_en_region"></a> [en\_region](#input\_en\_region) | Region where event notification will be created | `string` | `"au-syd"` | no |
3535
| <a name="input_ibmcloud_api_key"></a> [ibmcloud\_api\_key](#input\_ibmcloud\_api\_key) | The IBM Cloud API key this account authenticates to | `string` | n/a | yes |
3636
| <a name="input_prefix"></a> [prefix](#input\_prefix) | Prefix for sm instance | `string` | `"sm-com"` | no |
37-
| <a name="input_region"></a> [region](#input\_region) | Region where resources will be created | `string` | `"au-syd"` | no |
37+
| <a name="input_region"></a> [region](#input\_region) | Region where resources will be created | `string` | `"eu-de"` | no |
3838
| <a name="input_resource_group"></a> [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 |
3939
| <a name="input_resource_tags"></a> [resource\_tags](#input\_resource\_tags) | Optional list of tags to be added to created resources | `list(string)` | `[]` | no |
4040
| <a name="input_sm_service_plan"></a> [sm\_service\_plan](#input\_sm\_service\_plan) | The Secrets Manager service plan to provision | `string` | `"trial"` | no |

examples/complete/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ variable "sm_service_plan" {
1818
variable "region" {
1919
type = string
2020
description = "Region where resources will be created"
21-
default = "au-syd"
21+
default = "eu-de"
2222
}
2323

2424
variable "resource_group" {

tests/pr_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ var permanentResources map[string]interface{}
3636
// Current supported Event Notification regions
3737
var validRegions = []string{
3838
// "us-south", # do not run secrets manager tests in us regions
39-
// "eu-de",
39+
"eu-de", // all tests using KMS should run in the same region https://github.ibm.com/GoldenEye/issues/issues/12725
4040
// "eu-gb",
41-
"au-syd", // all tests using KMS should avoid dallas and EU regions https://github.ibm.com/GoldenEye/issues/issues/12725
41+
// "au-syd",
4242
}
4343

4444
// TestMain will be run before any parallel tests, used to read data from yaml for use with tests

0 commit comments

Comments
 (0)