-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved login flow and restructured config settings
- Loading branch information
Showing
12 changed files
with
136 additions
and
80 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# Change Log | ||
|
||
## [0.2](https://github.com/david-04/aws-link-accountifier/tree/v0.1) (2022-02-23) | ||
## [0.3](https://github.com/david-04/aws-link-accountifier/tree/v0.3) (2022-02-25) | ||
|
||
### Features | ||
- Added [documentation](https://github.com/david-04/aws-link-accountifier/blob/main/README.md) | ||
- Improved the login page flow for currently unauthenticated SSO users | ||
- Made it easier to customis forks by moving config presets to a [separate file](https://github.com/david-04/aws-link-accountifier/blob/main/src/modules/presets.ts) | ||
- Fixed an issue with the role-switch that could initiate a second account-switch | ||
|
||
- Added redirect service (for better interoperability when not using the aws-link-accountifier) | ||
- Added switch-role feature (re-login to the same account but with a different role) | ||
## [0.2](https://github.com/david-04/aws-link-accountifier/tree/v0.2) (2022-02-23) | ||
|
||
## [0.1](https://github.com/david-04/aws-link-accountifier/tree/v0.1) (2022-01-26) | ||
- Improved link operability by adding a redirect service | ||
- Added the option to re-open the current page with a different role | ||
|
||
### Features | ||
## [0.1](https://github.com/david-04/aws-link-accountifier/tree/v0.1) (2022-01-26) | ||
|
||
- Create accountified links | ||
- Configure the URL to switch accounts/roles | ||
- Orchestrated account switch flow when opening links | ||
- Display account hints on the sign-in page | ||
- Added the ability to create "accountified" links | ||
- Added orchestrated redirect flows when opening accountified links | ||
- Added account hints to AWS sign-in and role-selection pages |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace AwsLinkAccountifier { | ||
|
||
export function getPresetAccountSwitchUrl() { | ||
return "https://signin.aws.amazon.com/switchrole?account=${ACCOUNT_ID}&roleName=${ROLE_NAME}"; | ||
} | ||
|
||
export function getPresetRedirectUrl() { | ||
return "https://david-04.github.io/aws-link-accountifier/aws-accountified-redirect.html"; | ||
} | ||
} |
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
Oops, something went wrong.