From d0a122da132c5467269831e6159099aedfc97c30 Mon Sep 17 00:00:00 2001 From: mkarmah Date: Tue, 7 Jan 2025 10:45:52 +0000 Subject: [PATCH] ready for rc release --- integrations/aws/aws/aws_credentials.py | 4 ++-- integrations/aws/pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integrations/aws/aws/aws_credentials.py b/integrations/aws/aws/aws_credentials.py index c96add05f9..821b301123 100644 --- a/integrations/aws/aws/aws_credentials.py +++ b/integrations/aws/aws/aws_credentials.py @@ -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 diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 5dd7661824..bba63c20c1 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -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 ", "Erik Zaadi "]