creamy-stone-99746
04/15/2024, 2:50 AMterraform init
new values are not changed in the .terraform
folder. Even in the case of predefined values.
This is what is defined in the repository
resource "aws_lambda_function" "db_migrate_lambda" {
function_name = local.db_migrate_lambda_name
handler = "index.handler"
runtime = "python3.12"
memory_size = 128
timeout = 900
This is what is generated in the .terraform
runtime = "python3.7"
It seems to me that terraform init
is pulling in files from an old git commit or something. Any help would be appreciated