Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gani-23/monitoring
https://github.com/gani-23/monitoring
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gani-23/monitoring
- Owner: Gani-23
- Created: 2024-07-16T16:48:32.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T05:53:57.000Z (4 months ago)
- Last Synced: 2024-07-17T21:03:38.194Z (4 months ago)
- Language: Jupyter Notebook
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EagleEye AWS Infrastructure Automation
This project automates the creation and management of AWS infrastructure components including S3 buckets, EC2 instances, Target Groups, Load Balancers, and Auto Scaling Groups using Python and Boto3.
## Table of Contents
- [Project Overview](#project-overview)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Usage](#usage)## Project Overview
The EagleEye project demonstrates how to automate the provisioning of AWS resources for a web application. The script performs the following tasks:
1. Creates an S3 bucket and uploads files from a specified folder.
2. Launches an EC2 instance with a user-defined configuration.
3. Creates a Target Group and attaches the EC2 instance to it.
4. Sets up an Internet-facing Load Balancer and attaches it to the Target Group.
5. Registers the EC2 instance with the Target Group.
6. Creates an Auto Scaling Group to manage the EC2 instances.## Prerequisites
Before running this project, ensure you have the following:
- Python 3.7 or higher installed.
- Boto3 library installed (`pip install boto3`).
- AWS CLI configured with appropriate IAM permissions.
- An existing SSH key pair in the specified region.## Installation
1. **Clone the repository**:
```bash
git clone https://github.com/Gani-23/Monitoring
cd Monitoring
```2. **Install required Python packages**:
```bash
pip install boto3
```3. **Configure AWS CLI**:
Ensure you have configured the AWS CLI with your credentials:
```bash
aws configure
```## Usage
1. **Edit configuration parameters**:
Modify the `process` function and other configuration parameters in the script to match your AWS setup (e.g., bucket name, folder path, AMI ID, key pair name).2. **Run the script**:
Execute the script to create and configure your AWS infrastructure:
```bash
python Eagleeye.py
```