add template for directives
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
resource "aws_instance" "parent" {
|
||||
count = 2
|
||||
}
|
||||
|
||||
module "child" {
|
||||
source = "./child"
|
||||
things = "${join(",", aws_instance.parent.*.id)}"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user