Aws terraform
Budget: ₹600 – ₹1,500 INR
Here is a minimal flask app:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def pretend():
return 'Lets pretend this function eats lots of resources!'
Tasks
Deploy this flask app to AWS using Terraform.
Consider the following through your code or your README. Nothing to extensive...just so we have some talking points moving forward:
- Packaging
- Deployment
- Security
- Monitoring
- Scaling
- Troubleshooting
Write a simple Makefile to run:
- Python Formatter [I hear Black is nice ;-)]
- Python Linter
from flask import Flask
app = Flask(__name__)
@app.route('/')
def pretend():
return 'Lets pretend this function eats lots of resources!'
Tasks
Deploy this flask app to AWS using Terraform.
Consider the following through your code or your README. Nothing to extensive...just so we have some talking points moving forward:
- Packaging
- Deployment
- Security
- Monitoring
- Scaling
- Troubleshooting
Write a simple Makefile to run:
- Python Formatter [I hear Black is nice ;-)]
- Python Linter