Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mludvig/aws-ssm-tools
Handy tools for AWS Systems Manager - ssm-session, ecs-session, ssm-ssh and ssm-tunnel
https://github.com/mludvig/aws-ssm-tools
aws aws-ssm ecs ip ssh tunneling
Last synced: 3 months ago
JSON representation
Handy tools for AWS Systems Manager - ssm-session, ecs-session, ssm-ssh and ssm-tunnel
- Host: GitHub
- URL: https://github.com/mludvig/aws-ssm-tools
- Owner: mludvig
- License: other
- Created: 2019-06-12T21:39:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T16:32:59.000Z (12 months ago)
- Last Synced: 2024-07-18T16:32:02.889Z (4 months ago)
- Topics: aws, aws-ssm, ecs, ip, ssh, tunneling
- Language: Python
- Homepage:
- Size: 184 KB
- Stars: 230
- Watchers: 11
- Forks: 33
- Open Issues: 9
-
Metadata Files:
- Readme: README-agent.md
- License: LICENSE
Awesome Lists containing this project
README
# ssm-tunnel-agent
This file / package should be installed on the EC2 instance
through which you want to tunnel traffic to its VPC.It is useless on its own, it should be used with **[ssm-tunnel]** from
**[aws-ssm-tools](https://github.com/mludvig/aws-ssm-tools)**.## Installation
The agent requires Python 2.7 or newer and has no external dependencies. It should
work out of the box on any recently installed *Amazon Linux 2* instance.The easiest way to install the agent is from *[PyPI](https://pypi.org/)* repository:
```
sudo pip install aws-ssm-tunnel-agent
```If `pip` command is not available you can download it straight from GitHub:
```
sudo curl -o /usr/local/bin/ssm-tunnel-agent https://raw.githubusercontent.com/mludvig/aws-ssm-tools/master/ssm-tunnel-agent
sudo chmod +x /usr/local/bin/ssm-tunnel-agent
```Hint: these commands can be *copy & pasted* to an **[ec2-session](https://raw.githubusercontent.com/mludvig/aws-ssm-tools)** command prompt :)
## Author and License
This script was written by [Michael Ludvig](https://aws.nz/)
and is released under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).