How do I pass *.tfvars file into an env0 deployment?

I want to pass my terraform variables as config (*.tfvars) to my deployment.

Use `ENV0_TERRAFORM_CONFIG_FILE_PATH` to specify the relative path of the file you would like to use. 

Assume your template has a simple folder structure like this:

.
├── main.tf
├── prod.tfvars
└── dev.tfvars

When deploying your "dev" environment - add an environment variable to the deployment with the following configuration:
ENV0_TERRAFORM_CONFIG_FILE_PATH=dev.tfvars

For more information please refer to our docs on additional controls.