-
Notifications
You must be signed in to change notification settings - Fork 61
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
[Integration][AWS] | Fix InvalidToken Exceptions Due to Improper Token Refresh Calls #1190
Open
mk-armah
wants to merge
40
commits into
main
Choose a base branch
from
aws/port-11555
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 10 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
c4c8e36
Fix an issue where the integration enters an endless loop on permissi…
mk-armah 02c9c6f
lint
mk-armah 7f6187b
Merge branch 'main' into aws/port-11555
mk-armah 75d6190
removed permission missing error log
mk-armah 629af39
Merge branch 'aws/port-11555' of https://github.com/port-labs/ocean i…
mk-armah ddc123b
Merge branch 'main' into aws/port-11555
mk-armah 3bac44a
bumped integration version
mk-armah f794011
removed unnecessary calls for token refresh
mk-armah 6e8ae57
Merge branch 'main' into aws/port-11555
mk-armah 186a768
Fix tests and lints
mk-armah a700b11
Merge branch 'main' into aws/port-11555
mk-armah 2e65ce4
switch token refresh strategy from cache to aiobotocore refreshable c…
mk-armah 17c9cdf
resolve conflicts
mk-armah 5cc7258
remodel token refresh strategy
mk-armah 7e5e81e
tests
mk-armah 072894b
tests
mk-armah 004a3d8
reduce sts client object creationc
mk-armah ecbd9a2
Merge branch 'main' into aws/port-11555
mk-armah b79b4de
bump integration version
mk-armah 69c176e
lint fix
mk-armah 418176e
use setattr to pass refreshable_credentials to botocore
mk-armah 2c59250
restore naming convention
mk-armah ec9fd92
clean up codebase and resolve test failures
mk-armah e8a9de8
Merge branch 'main' into aws/port-11555
mk-armah afa2dec
Merge branch 'main' into aws/port-11555
phalbert 12029a8
Assume role for refreshable credentials once
mk-armah 098c2d3
Merge branch 'aws/port-11555' of https://github.com/port-labs/ocean i…
mk-armah 7d113c5
Merge branch 'main' into aws/port-11555
mk-armah d0a122d
ready for rc release
mk-armah 6b486c1
resolving UnrecognizedClientException issue
mk-armah aa06383
debuggin
mk-armah e07a666
Merge branch 'main' into aws/port-11555
mk-armah 9a816a0
Merge branch 'aws/port-11555' of https://github.com/port-labs/ocean i…
mk-armah baca035
ready for rc release
mk-armah 655a49c
lint
mk-armah bb63690
debug switch case for isrole
mk-armah 42f9456
Merge branch 'main' into aws/port-11555
mk-armah 7246b49
resolved AccountNotFoundError
mk-armah 0c5db5d
Merge branch 'main' into aws/port-11555
mk-armah 3204bd4
Merge branch 'main' into aws/port-11555
mk-armah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "aws" | ||
version = "0.2.63" | ||
version = "0.2.64" | ||
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]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice