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

https://github.com/nilanjan-mondal/vortex

An interactive Bash script that simplifies fetching and viewing AWS resource information. Get instant JSON and tabular outputs for key services like EC2, S3, RDS, and more, helping you quickly audit and understand your cloud infrastructure.
https://github.com/nilanjan-mondal/vortex

aws bash shell-script

Last synced: about 2 months ago
JSON representation

An interactive Bash script that simplifies fetching and viewing AWS resource information. Get instant JSON and tabular outputs for key services like EC2, S3, RDS, and more, helping you quickly audit and understand your cloud infrastructure.

Awesome Lists containing this project

README

          

![github](https://img.shields.io/badge/GitHub-181717.svg?style=for-the-badge&logo=GitHub&logoColor=white)
![markdown](https://img.shields.io/badge/Markdown-181717.svg?style=for-the-badge&logo=Markdown&logoColor=white)

# Vortex – AWS Resource viewer
An **interactive CLI tool** designed to fetch and display AWS resource information in both JSON and tabular formats, simplifying cloud resource auditing and management.

---

## Project Overview

VORTEX is an intuitive and powerful CLI tool that acts as your personal AWS resource explorer. It automates the process of querying and displaying critical information about your AWS infrastructure. Whether you need a quick overview of your EC2 instances, S3 buckets, RDS databases, or more, VORTEX provides instant, organized outputs in both raw JSON for detailed analysis and clean tabular formats for quick readability. It's an essential tool for cloud engineers, developers, and anyone who needs to quickly understand their AWS environment.

---

## Getting Started
### • Prerequisites
#### 1. AWS CLI: Ensure you have the AWS Command Line Interface installed and configured with appropriate credentials. If not, follow the official AWS CLI installation guide.
```bash
aws configure
```

### • Installation
#### 1. Clone the repository
``` bash
git clone https://github.com/Nilanjan-Mondal/Vortex.git
cd Vortex
```

#### 2. Make the script executable
``` bash
chmod +x vortex.sh
```

### • Usage
``` bash
./vortex.sh
```

---

| Layer | Tech Used |
|------------|-----------|
|script|![Bash](https://img.shields.io/badge/Bash-121011?style=for-the-badge&logo=gnubash&logoColor=white)

---

## Directory Structure

```bash

Vortex/

├── output_logs/ # Directory to store generated JSON and table files
│ ├── output_.json
│ └── output__table.txt

├── vortex.sh # The main VORTEX script
├── README.md # Project documentation
└── LICENSE # License file

```
---