Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/other_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ import (
func TestRunBasicExample(t *testing.T) {
t.Parallel()

var validRegions = []string{
"eu-de",
"eu-gb",
"au-syd",
}

options := testhelper.TestOptionsDefaultWithVars(&testhelper.TestOptions{
Testing: t,
TerraformDir: "examples/basic",
Expand Down
6 changes: 3 additions & 3 deletions tests/pr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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-gb",
"au-syd",
// "eu-de",
// "eu-gb",
"au-syd", // all tests using KMS should avoid dallas and EU regions https://github.ibm.com/GoldenEye/issues/issues/12725
}

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