Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Lambda Function docs URL and pydantic dependency #12

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cdk/stacks/cdk_lambda_fastapi_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ def generate_cloudformation_outputs(self):
CfnOutput(
self,
"LambdaFunctionDocsUrl",
value=self.lambda_function_url.url,
value=f"{self.lambda_function_url.url}docs",
description="Documentation URL to invoke Lambda Function",
)
2 changes: 2 additions & 0 deletions lambda-layers/fastapi/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
fastapi==0.109.0
mangum==0.17.0
pydantic>=2.5.3
pydantic_core>=2.14.6
2 changes: 1 addition & 1 deletion src/lambdas/api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
description="Simple FastAPI server that runs on top of Lambda Functions.",
contact={"Santiago Garcia Arango": "san99tiago@gmail.com"},
title="Simple FastAPI Example",
version="0.0.1",
version="1.0.0",
)


Expand Down
Loading