Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@

This simple script helps you SSH into an Elastic Beanstalk server using AWS SSM.

eb-ssm is desinged to combine tools from the EB CLI and the AWS CLI to provide a better alternative to `eb ssh`.
eb-ssm is designed to combine tools from the EB CLI and the AWS CLI to provide a better alternative to `eb ssh`.

It's a pip library, installed by `pip install eb-ssm`.
It's a pip library, installed by `pip` and [`pipx`](https://pipx.pypa.io/) (recommended):

```sh
pipx install eb-ssm
```

OR

```sh
pip install eb-ssm
```

Once it's set up, you can SSH into your Elastic Beanstalk servers with `eb-ssm [ENVIRONMENT_NAME]`.

Expand Down