Skip to content

Commit

Permalink
fix: fix python version in terraform to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 committed Aug 7, 2024
1 parent 77e1f14 commit 105742a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/server/auth_lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ resource "aws_lambda_function" "fam-auth-function" {

source_code_hash = filebase64sha256("fam_auth_function.zip")

runtime = "python3.8"
runtime = "python3.12"

vpc_config {
security_group_ids = ["${aws_security_group.fam_app_sg.id}"]
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/server/fam_admin_management_api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resource "aws_lambda_function" "fam_admin_management_api_function" {

source_code_hash = filebase64sha256("fam-admin-management-api.zip")

runtime = "python3.8"
runtime = "python3.12"

vpc_config {
security_group_ids = ["${aws_security_group.fam_app_sg.id}"]
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/server/fam_api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ resource "aws_lambda_function" "fam-api-function" {

source_code_hash = filebase64sha256("fam-ui-api.zip")

runtime = "python3.8"
runtime = "python3.12"

vpc_config {
security_group_ids = ["${aws_security_group.fam_app_sg.id}"]
Expand Down

0 comments on commit 105742a

Please sign in to comment.