1variable "input" {}
2
3provider "aws" {
4  region = "us-east-${var.input}"
5}
6
7resource "aws_instance" "foo" { }
8