Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed EC2Client initialization #83

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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 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