Skip to content
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ Release process:
1. upload using: `VERSION=x.y.z APIKEY=abc... make upload`
1. test installing the rock from LuaRocks

### Unreleased
- fix: fix assumeRole function name on STS.
[#59](https://github.com/Kong/lua-resty-aws/pull/59)

### 1.2.2 (2-May-2023)

- fix: add the SharedFileCredentials into rockspec so it can be packed and used correctly.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ end
-- updates credentials.
-- @return success, or nil+err
function ChainedTemporaryCredentials:refresh()
local result, err = self.sts:AssumeRole(self.params)
local result, err = self.sts:assumeRole(self.params)
if not result then
return nil, err
end
Expand Down