Infrastructure-as-Code (IaC) with Python - AWS
This repository contains Python automation scripts for infrastructure management.
- Python 3.8+
- pip package manager
- Required Python packages (see requirements.txt)
\\�ash
git clone https://github.com/InfraPlatformer/aws-ec2-boto3-automation.git cd aws-ec2-boto3-automation
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt \\
\\�ash
python main.py
python -m module_name \\
- Copy \config.example.json\ to \config.json\
- Update configuration values as needed
\
aws-ec2-boto3-automation/
├── src/ # Source code
├── config/ # Configuration files
├── tests/ # Test files
├── docs/ # Documentation
├── requirements.txt # Python dependencies
├── README.md # This file
└── .gitignore # Git ignore rules
\\
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
This project is licensed under the MIT License.
2025-09-21