https://github.com/nopp/aawt
Amazon AWS Web Tool (view only)
https://github.com/nopp/aawt
aws charts ec2 flask hacktoberfest hacktoberfest2022
Last synced: about 1 year ago
JSON representation
Amazon AWS Web Tool (view only)
- Host: GitHub
- URL: https://github.com/nopp/aawt
- Owner: nopp
- Created: 2014-11-08T23:21:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T19:46:03.000Z (over 5 years ago)
- Last Synced: 2025-04-11T03:15:11.802Z (about 1 year ago)
- Topics: aws, charts, ec2, flask, hacktoberfest, hacktoberfest2022
- Language: Python
- Homepage:
- Size: 1.23 MB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Amazon AWS Web Tool (AAWT) discontinued

Features
========
* Cloudfront (simple)
* EC2 (With Charts and Prices)
* EC2 Reserved
* EBS
* ELB (With Charts) Obs:. only classic load balancer
* RDS (With Charts)
* IAM
* DynamoDB
* Alerts
Amazon AWS configuration:
========================
Create an user aawt with access_key and private_key
Attach policy below on aawt user:
* AmazonEC2ReadOnlyAccess
* IAMReadOnlyAccess
* AmazonRDSReadOnlyAccess
* CloudWatchReadOnlyAccess
* AmazonDynamoDBReadOnlyAccess
* CloudFrontReadOnlyAccess
You need to create an inline policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:GetConsoleOutput*",
"ec2:GetConsoleScreenshot*",
"health:Describe*"
],
"Resource": "*"
}]
}
You need to enable "Monitor your estimated charges"
* Billing & Cost Management > Preferences > Check "Receive Billing Alerts"
Obs:. this will work some hours later.
RUNNING ON DOCKER
=================
# docker container run -p 8082:8082 -e akey=yourAccessKey -e skey='yourSecretKey' -d nopp/aawt:1
RUNNING ON SEVER
================
Install
=======
# yum install python-pip supervisor -y
# git clone https://github.com/nopp/aawt.git
# cd aawt
# pip install -r requirements.txt
-> configure the application
# python aawt.py
Configure
=========
Server:
=======
Copy config.cfg to /etc/aawt/config.cfg(and configure it).