In terraform, say you declared input variable "region", using following block in your *.tf config file:
variable "region" {}
and you use its value in the following *.tf code block:
provider "aws" { access_key = "AKIA98298ADFDDRDSFDFSF" secret_key = "_adofijoeairjdsfDDF(*Fjij" region = "${var.region}" }
how do you assign it value of "us-west-2" in your *.tfvars file:
[...]