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