add template for directives
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
resource "aws_instance" "foo" {
|
||||
num = "2"
|
||||
}
|
||||
|
||||
resource "aws_instance" "bar" {
|
||||
foo = aws_instance.foo.num
|
||||
}
|
||||
|
||||
module "mod" {
|
||||
source = "./mod"
|
||||
count = 1
|
||||
}
|
||||
Reference in New Issue
Block a user