mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-09 07:05:33 -06:00
8 lines
105 B
Terraform
8 lines
105 B
Terraform
|
module "foo" {
|
||
|
source = "./bar"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "web" {
|
||
|
count = "${module.foo.bar}"
|
||
|
}
|