Skip to content

Commit c8101cd

Browse files
authored
Merge pull request #2788 from kakakakakku/terraform-eventbridge-scheduled-lambda
terraform-eventbridge-scheduled-lambda: Update runtime to python3.13
2 parents ea5596e + 7e812c6 commit c8101cd

File tree

2 files changed

+2
-3
lines changed
  • apigw-sqs-terraform
  • terraform-eventbridge-scheduled-lambda

2 files changed

+2
-3
lines changed

apigw-sqs-terraform/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ terraform {
1010
}
1111

1212
provider "aws" {
13-
profile = "default"
1413
region = "us-east-1"
1514
}
1615

@@ -268,4 +267,4 @@ output "Test-Command1" {
268267
output "Test-Command2" {
269268
value = "aws sqs receive-message --queue-url ${aws_sqs_queue.MySQSqueue.id}"
270269
description = "Command to query the SQS Queue for messages"
271-
}
270+
}

terraform-eventbridge-scheduled-lambda/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module "lambda_function" {
4343
function_name = "${random_pet.this.id}-lambda"
4444
description = "My awesome lambda function"
4545
handler = "index.lambda_handler"
46-
runtime = "python3.8"
46+
runtime = "python3.13"
4747
publish = true
4848

4949
source_path = "${path.module}/../terraform-fixtures/python"

0 commit comments

Comments
 (0)