Files
opentf/terraform/testdata/refresh-module-input-computed-output/child/main.tf
2019-06-30 10:16:15 +02:00

12 lines
161 B
HCL

variable "input" {
type = list(string)
}
resource "aws_instance" "foo" {
foo = "${var.input}"
}
output "foo" {
value = "${aws_instance.foo.foo}"
}