Skip to content

Commit

Permalink
Fixed EC2Client initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
rddimon committed Jan 24, 2024
1 parent 992b93e commit 1e10765
Show file tree
Hide file tree
Showing 3 changed files with 10 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
5 changes: 3 additions & 2 deletions src/aws/ec2-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@ export class EC2Wrapper {
public ec2: EC2Client

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

/**
* Returns the promise that contains the vpc list
* @returns {Promise.<Vpc[]>}
*/
public async getVpcs (): Promise<Vpc[]> {
console.log(await this.ec2.config.region());
return await getAWSPagedResults(
this.ec2,
"Vpcs",
Expand Down

0 comments on commit 1e10765

Please sign in to comment.