Skip to content

Commit 115fcd4

Browse files
authored
test: pass stsRegionalEndpoints as regional in STS (#3309)
1 parent 1bb6b43 commit 115fcd4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

configuration.sample

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"region": "us-east-1",
3-
"stsRegionalEndpoints": "regional",
43
"s3": {
54
"params": { "Bucket": "test-s3-bucket" }
65
},

features/sts/step_definitions/sts.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module.exports = function() {
22
this.Before('@sts', function (callback) {
3-
this.service = new this.AWS.STS();
3+
this.service = new this.AWS.STS({
4+
stsRegionalEndpoints: "regional"
5+
});
46
callback();
57
});
68

0 commit comments

Comments
 (0)