Skip to content

Commit

Permalink
Refactor lambda_handler to directly use event body for input data par…
Browse files Browse the repository at this point in the history
…sing
  • Loading branch information
Dave Arnold committed Apr 23, 2025
1 parent ebbbdd9 commit 641c488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eks_automation/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def lambda_handler(event, context):
Returns:
dict: Dict containing status message.
"""
input_data = json.loads(event["body"])
input_data = event["body"]

project_name = input_data["project_name"]
eks_settings = input_data["eks_settings"]
Expand Down

0 comments on commit 641c488

Please sign in to comment.