Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikhailms/aws-simple-web-gui
Simple Web GUI for AWS project
https://github.com/mikhailms/aws-simple-web-gui
Last synced: 2 days ago
JSON representation
Simple Web GUI for AWS project
- Host: GitHub
- URL: https://github.com/mikhailms/aws-simple-web-gui
- Owner: MikhailMS
- Created: 2023-11-15T19:35:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-10T14:55:49.000Z (about 1 year ago)
- Last Synced: 2024-11-08T15:39:53.511Z (about 2 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Simple Web GUI
As name states, this is simple (very simple) Web GUI
This project is part of one big project where I research how to build infrastructure in AWS for 2-tier application (and application as well, of course) :
1. [Terraform](https://github.com/MikhailMS/aws-2tier-lambda-api) contains all the terraform code to deploy required infra & application code
2. Simple Web GUI (this project) contains code for simple Web GUI to bridge the gap between user and Lambda functions
3. [Lambda functions](https://github.com/MikhailMS/aws-lambda-functions) contain code for 3 Lambda functions that replicate simple backend functions
1. `return_ip` - returns IP address of the Lambda function
2. `fetch_go_versions` - returns JSON with recent 5 Go versions
3. `custom_auth` - custom Lambda authorizer (only supports payload format `version 1.0`) that controls access to above 2 functions when calling via API Gateway## Usage
This application could be spin up locally
1. `conda env create -f conda_env.yml`
2. `conda activate ...`
3. `pip install -r requirements.txt`
4. `uvicorn main:app --reload`## Notes:
1. This project has Action pipeline that builds Docker image for this application and pushes image into AWS ECR