Skip to content

Commit

Permalink
chore: upgrade python version
Browse files Browse the repository at this point in the history
  • Loading branch information
lazize committed Sep 20, 2023
1 parent 90dd48f commit 4aebae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cloudformation/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Resources:
Handler: 'update_aws_ip_ranges.lambda_handler'
MemorySize: 256
Role: !GetAtt 'LambdaUpdateIPRangesIamRole.Arn'
Runtime: python3.10
Runtime: python3.11
Timeout: 300
ReservedConcurrentExecutions: 2
Code:
Expand Down
2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ resource "aws_lambda_function" "update_ip_ranges" {
description = "This Lambda function, invoked by an incoming SNS message, updates the IPv4 and IPv6 ranges with the addresses from the specified services"
role = aws_iam_role.update_ip_ranges.arn
handler = "update_aws_ip_ranges.lambda_handler"
runtime = "python3.10"
runtime = "python3.11"
timeout = 300
reserved_concurrent_executions = 2
memory_size = 256
Expand Down

0 comments on commit 4aebae7

Please sign in to comment.