├── .gitignore ├── README.md ├── aws_sso_menu.py ├── cli.py ├── main.py ├── requirements.txt ├── retrieve_aws_sso_token.py └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .idea/ 3 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/README.md -------------------------------------------------------------------------------- /aws_sso_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/aws_sso_menu.py -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/cli.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/requirements.txt -------------------------------------------------------------------------------- /retrieve_aws_sso_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/retrieve_aws_sso_token.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophetd/aws-sso-device-code-authentication/HEAD/screenshot.png --------------------------------------------------------------------------------