We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb6b43 commit 115fcd4Copy full SHA for 115fcd4
configuration.sample
@@ -1,6 +1,5 @@
1
{
2
"region": "us-east-1",
3
- "stsRegionalEndpoints": "regional",
4
"s3": {
5
"params": { "Bucket": "test-s3-bucket" }
6
},
features/sts/step_definitions/sts.js
@@ -1,6 +1,8 @@
module.exports = function() {
this.Before('@sts', function (callback) {
- this.service = new this.AWS.STS();
+ this.service = new this.AWS.STS({
+ stsRegionalEndpoints: "regional"
+ });
callback();
7
});
8
0 commit comments