mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 20:30:28 -06:00
10 lines
121 B
Terraform
10 lines
121 B
Terraform
|
variable "foo" {}
|
||
|
|
||
|
module "child" {
|
||
|
source = "./child"
|
||
|
|
||
|
value = "${var.foo}"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "foo" {}
|