Skip to content

Commit 11b7b14

Browse files
committed
Update lambda
1 parent 76fe6b9 commit 11b7b14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lambdas/api/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def handle(event, context):
1616
return {
1717
'statusCode': 200,
1818
'headers': {'Content-Type': 'application/json'},
19-
'body': json.dumps({"message": f"Hello {team} !"})
19+
'body': json.dumps({"message": f"Hello {team}!"})
2020
}
2121
else:
2222
return {

stacks/oidc_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
4747
"lambda:*",
4848
"logs:*"
4949
],
50-
resources="*"
50+
resources=["*"]
5151

5252
))

0 commit comments

Comments
 (0)