Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.44 KB

readme.md

File metadata and controls

37 lines (27 loc) · 1.44 KB

Requirements

Installation

go install github.com/oddballteam/ec2ssm@latest

alternatively you can download a release. Unzip the archive and add the ec2ssm binary to a folder in your path.

Usage

ec2ssm

run ec2ssm and select the instance you would like to connect to using the arrow keys.

Issues

This is a new tool and likely will have issues. You can message @Doug Moore if you run into an issue. There is no validity checking on if a session CAN be made. So, before submitting first attempt to make a ssm session without ec2ssm

This can be attempted with aws ssm start-session --target i-INSTANCE_ID_HERE

Build

builds are automated from GitHub Actions. A token with repo write permission is required for GoRelease to work.

To create a new build:

  1. push any code changes
  2. run git tag -a v1.0.1 -m "tag description" with an appropriate incremented version (e.g. v1.0.1 -> v1.0.2) following major versioning. A latest tag will be added for you by GitHub.
  3. push the tag git push origin v1.0.1 which triggers an automated builds