├── .gitignore ├── LICENSE ├── README.md ├── aws-ssh-config.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucaborello/aws-ssh-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucaborello/aws-ssh-config/HEAD/README.md -------------------------------------------------------------------------------- /aws-ssh-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucaborello/aws-ssh-config/HEAD/aws-ssh-config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto 2 | --------------------------------------------------------------------------------