mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-01 17:02:38 -05:00
12 lines
161 B
HCL
12 lines
161 B
HCL
variable "input" {
|
|
type = list(string)
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${var.input}"
|
|
}
|
|
|
|
output "foo" {
|
|
value = "${aws_instance.foo.foo}"
|
|
}
|