opentofu/terraform/test-fixtures/plan-module-input-var/main.tf
2014-09-23 16:55:19 -07:00

11 lines
135 B
HCL

variable "foo" {}
module "child" {
input = "${var.foo}"
source = "./child"
}
resource "aws_instance" "bar" {
foo = "2"
}