├── LICENSE ├── README.md └── python └── aws └── Ninja └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Abhishek Veeramalla 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # devops-project-ideas 2 | Real-time project ideas for devops engineers. 3 | -------------------------------------------------------------------------------- /python/aws/Ninja/README.md: -------------------------------------------------------------------------------- 1 | # AWS Ninja 2 | 3 | ## Project Summary 4 | 5 | "AWS Ninja" is a governance project that uses Lambda functions to optimize and manage AWS resources. With AWS Ninja, you can easily govern your AWS resources, automate 6 | compliance checks, and enforce policies. By leveraging Lambda functions, AWS Ninja enables you to ensure the security, compliance, and cost-efficiency of your AWS 7 | infrastructure. Whether you're a small startup or a large enterprise, AWS Ninja can help you streamline your AWS governance and improve your operations. 8 | 9 | ## Project Scope 10 | 11 | - Fix not properly secured S3 buckets: Lambda functions can be used to monitor S3 bucket access and enforce security policies, such as preventing public access, 12 | encrypting data at rest, and logging all access activity. 13 | 14 | - Fix not optimized EC2 instances: Lambda functions can be used to monitor CPU utilization and other metrics of your EC2 instances, and automatically adjust the 15 | instance size or capacity based on the workload. This can help optimize performance and reduce costs. 16 | 17 | - Fix not automated backups and disaster recovery: Lambda functions can be used to schedule backups and automate disaster recovery processes, such as copying data 18 | to a backup S3 bucket or launching a new EC2 instance in case of a failure. 19 | 20 | - Fix not automated routine tasks: Lambda functions can be used to automate routine tasks, such as database backups, log analysis, and file processing. This can help 21 | reduce manual effort and improve efficiency. 22 | 23 | - Fix IAM permissions and roles properly: Lambda functions can be used to enforce IAM policies and roles, such as granting least privilege access and rotating access keys. 24 | This can help improve security and compliance. 25 | 26 | ## High Level Design 27 | 28 | ![Screenshot 2023-04-22 at 8 07 51 PM](https://user-images.githubusercontent.com/43399466/233791082-464d1417-6bfb-46ff-bb32-697a605a1a28.png) 29 | --------------------------------------------------------------------------------