<!-- Hi there, Thank you for opening an issue. Please note that we try to keep the Terraform issue tracker reserved for bug reports and feature requests. For general usage questions, please see: https://www.terraform.io/community.html. If your issue relates to a specific Terraform provider, please open it in the provider's own repository. The index of providers is at https://github.com/terraform-providers . --> ### Terraform Version <!--- Run `terraform version` to show the version, and paste the result between the ``` marks below. If you are not running the latest version of Terraform, please try upgrading because your issue may have already been fixed. --> ``` → terraform version Terraform v0.12.26 ``` ### Terraform Configuration Files See [terraform_test_case.zip](https://github.com/hashicorp/terraform/files/4911356/terraform_test_case.zip) ### Expected Behavior Terraform should load the `dev.auto.tfvars` file from specified path when ran with directory argument. ### Actual Behavior When I run `terraform apply <dir>`, terraform does not automatically load `auto.tfvars` in that dir and instead asks me to provide values for variables: ``` terraform_test_case>terraform apply terraform/environments/dev terraform apply terraform/environments/dev var.foo Enter a value: ``` ### Steps to Reproduce ``` > unzip terraform_test_case.zip > cd terraform_test_case terraform_test_case> terraform apply terraform/environments/dev ```