blob: ebc1e3ffc142854a5d08a5a0d5f6eb612204d437 [file] [log] [blame]
variable "input" {
type = string
}
resource "aws_instance" "foo" {
foo = var.input
}
output "foo" {
value = aws_instance.foo.foo
}