An open API service indexing awesome lists of open source software.

https://github.com/iamshobe/a9s

Cli tool for easily navigating in AWS services.
https://github.com/iamshobe/a9s

aws cli cli-app

Last synced: 6 months ago
JSON representation

Cli tool for easily navigating in AWS services.

Awesome Lists containing this project

README

          

# a9s

![](https://img.shields.io/github/v/release/IamShobe/a9s) ![](https://img.shields.io/github/workflow/status/IamShobe/a9s/Create%20and%20publish%20a%20Python%20package?label=pypi%20build) ![](https://img.shields.io/github/workflow/status/IamShobe/a9s/Create%20and%20publish%20a%20Docker%20image?label=docker%20build)
Cli tool for easily navigating in AWS services.
Highly inspired from [k9s](https://github.com/derailed/k9s).

## How to install

```shell
pip install a9s
```

### Docker build

```shell
docker build . -t a9s
docker run -v ~/.aws/:/root/.aws -it --rm a9s
```

### Running docker from cloud

```shell
docker run -v ~/.aws/:/root/.aws -it --rm ghcr.io/iamshobe/a9s
```

### How to develop

#### Running mock server
Install poetry env:
```bash
poetry install
```
Start dev server:
```bash
poetry run moto_server -p 54321
```
Run mock data:
```bash
poetry run python -m mocked_env.main
```

#### Running mock server with docker-compose
```bash
docker-compose -f mocked_env/docker-compose.yaml up --build
```

#### Running a9s in with mocked server
Run a9s in local mode (connects to mock server on port 54321):
```bash
LOCAL=true poetry run a9s
```

## Goals

### Services
- [X] s3 support
- [X] route53 support
- [X] DynamoDB support
- [ ] EC2 support
- [ ] ELB support
- [ ] Cloudfront support

### Features
- [X] responsive tables
- [X] allow to easily switch between services
- [X] auto-complete commands
- [X] vim shortcuts support
- [X] opening files in S3
- [X] quick yank
- [ ] smart navigation between services - route53 pointing to ELB etc..