Skip to content

Commit

Permalink
ready for rc release
Browse files Browse the repository at this point in the history
  • Loading branch information
mk-armah committed Jan 7, 2025
1 parent 7d113c5 commit d0a122d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integrations/aws/aws/aws_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ async def refresh() -> Dict[str, Any]:
self.access_key_id = credentials["AccessKeyId"]
self.secret_access_key = credentials["SecretAccessKey"]
self.session_token = credentials["SessionToken"]
self.expiration = credentials["Expiration"].isoformat()
expiration = credentials["Expiration"].isoformat()
return {
"access_key": self.access_key_id,
"secret_key": self.secret_access_key,
"token": self.session_token,
"expiry_time": self.expiration,
"expiry_time": expiration,
}

return refresh
Expand Down
2 changes: 1 addition & 1 deletion integrations/aws/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws"
version = "0.2.79"
version = "0.2.79-rc1"
description = "This integration will map all your resources in all the available accounts to your Port entities"
authors = ["Shalev Avhar <[email protected]>", "Erik Zaadi <[email protected]>"]

Expand Down

0 comments on commit d0a122d

Please sign in to comment.