Skip to content

Commit

Permalink
Merge pull request #83 from amplify-education/bugfix/5_0_2
Browse files Browse the repository at this point in the history
Fixed EC2Client initialization
  • Loading branch information
rddimon committed Jan 24, 2024
2 parents 992b93e + e3ffd5c commit d6050f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.0.2] - 2024-01-19

### Fixed

- Fixed EC2 client credentials initialization

## [5.0.1] - 2024-01-19

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "serverless-vpc-discovery",
"version": "5.0.1",
"version": "5.0.2",
"engines": {
"node": ">=14"
},
Expand Down
4 changes: 2 additions & 2 deletions src/aws/ec2-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export class EC2Wrapper {
public ec2: EC2Client

constructor (credentials: any) {
this.ec2 = new EC2Client([{
this.ec2 = new EC2Client({
credentials,
region: Globals.getRegion(),
retryStrategy: Globals.getRetryStrategy()
}]);
});
}

/**
Expand Down

0 comments on commit d6050f6

Please sign in to comment.