-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcdk.json
27 lines (27 loc) · 805 Bytes
/
cdk.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"app": "make clean && make install && python3 cdk/app.py",
"context": {
"main_resources_name": "fastapi-todo-app",
"tags": {
"Owner": "Santiago Garcia Arango",
"Source": "https://github.com/san99tiago/aws-fastapi-todo-app",
"Usage": "Advanced REST API with FastAPI on top of API Gateway and Lambda Functions for a TODO app"
},
"app_config": {
"dev": {
"deployment_environment": "dev",
"log_level": "DEBUG",
"table_name": "todo-app-table-dev",
"api_gw_name": "todo-api-dev",
"auth": "api_key"
},
"prod": {
"deployment_environment": "prod",
"log_level": "INFO",
"table_name": "todo-app-table-prod",
"api_gw_name": "todo-api-prod",
"auth": "cognito"
}
}
}
}