mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
68b38b4904
variable)
11 lines
135 B
HCL
11 lines
135 B
HCL
variable "foo" {}
|
|
|
|
module "child" {
|
|
input = "${var.foo}"
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "2"
|
|
}
|