mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
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"
|
|
}
|