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.
- Host: GitHub
- URL: https://github.com/nilanjan-mondal/vortex
- Owner: Nilanjan-Mondal
- License: mit
- Created: 2025-06-10T13:22:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-10T13:49:38.000Z (about 1 year ago)
- Last Synced: 2025-06-18T03:11:31.021Z (about 1 year ago)
- Topics: aws, bash, shell-script
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


# 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|
---
## 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
```
---