diff --git a/apigw-sqs-terraform/main.tf b/apigw-sqs-terraform/main.tf index 78615ac6c..d64c921aa 100644 --- a/apigw-sqs-terraform/main.tf +++ b/apigw-sqs-terraform/main.tf @@ -10,7 +10,6 @@ terraform { } provider "aws" { - profile = "default" region = "us-east-1" } @@ -268,4 +267,4 @@ output "Test-Command1" { output "Test-Command2" { value = "aws sqs receive-message --queue-url ${aws_sqs_queue.MySQSqueue.id}" description = "Command to query the SQS Queue for messages" -} \ No newline at end of file +} diff --git a/terraform-eventbridge-scheduled-lambda/main.tf b/terraform-eventbridge-scheduled-lambda/main.tf index 77262820d..de052f75c 100644 --- a/terraform-eventbridge-scheduled-lambda/main.tf +++ b/terraform-eventbridge-scheduled-lambda/main.tf @@ -43,7 +43,7 @@ module "lambda_function" { function_name = "${random_pet.this.id}-lambda" description = "My awesome lambda function" handler = "index.lambda_handler" - runtime = "python3.8" + runtime = "python3.12" publish = true source_path = "${path.module}/../terraform-fixtures/python"