Having an issue with Terraform. Even when I run `t...
# ask-metaflow
c
Having an issue with Terraform. Even when I run
terraform 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
Copy code
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
Copy code
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