Skip to content

Commit

Permalink
Merge pull request #2449 from chaitanyagummadi/main
Browse files Browse the repository at this point in the history
upgrade python runtime version to 3.8 for EventBridge inbound webhooks
  • Loading branch information
julianwood authored Sep 11, 2024
2 parents be66560 + fbea85c commit 8e2df8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions eventbridge-webhooks/1-stripe/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Resources:
Bucket: !Sub 'eventbridge-inbound-webhook-templates-prod-${AWS::Region}'
Key: 'lambda-templates/stripe-lambdasrc.zip'
Handler: app.lambda_handler
Runtime: python3.7
Runtime: python3.8
ReservedConcurrentExecutions: 10
Environment:
Variables:
Expand Down Expand Up @@ -89,4 +89,4 @@ Outputs:

LambdaFunctionARN:
Description: Lambda function ARN.
Value: !GetAtt WebhookFunction.Arn
Value: !GetAtt WebhookFunction.Arn
4 changes: 2 additions & 2 deletions eventbridge-webhooks/2-github/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Resources:
Bucket: !Sub 'eventbridge-inbound-webhook-templates-prod-${AWS::Region}'
Key: 'lambda-templates/github-lambdasrc.zip'
Handler: app.lambda_handler
Runtime: python3.7
Runtime: python3.8
ReservedConcurrentExecutions: 10
Environment:
Variables:
Expand Down Expand Up @@ -89,4 +89,4 @@ Outputs:

LambdaFunctionARN:
Description: Lambda function ARN.
Value: !GetAtt WebhookFunction.Arn
Value: !GetAtt WebhookFunction.Arn
4 changes: 2 additions & 2 deletions eventbridge-webhooks/3-twilio/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Resources:
Bucket: !Sub 'eventbridge-inbound-webhook-templates-prod-${AWS::Region}'
Key: 'lambda-templates/twilio-lambdasrc.zip'
Handler: app.lambda_handler
Runtime: python3.7
Runtime: python3.8
ReservedConcurrentExecutions: 10
Environment:
Variables:
Expand Down Expand Up @@ -89,4 +89,4 @@ Outputs:

LambdaFunctionARN:
Description: Lambda function ARN.
Value: !GetAtt WebhookFunction.Arn
Value: !GetAtt WebhookFunction.Arn

0 comments on commit 8e2df8c

Please sign in to comment.