8 lines
105 B
Terraform
8 lines
105 B
Terraform
|
module "foo" {
|
||
|
source = "./bar"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "web" {
|
||
|
count = "${module.foo.bar}"
|
||
|
}
|