add template for directives
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
resource "test_thing" "a" {
|
||||
}
|
||||
|
||||
resource "test_thing" "b" {
|
||||
}
|
||||
|
||||
resource "test_thing" "c" {
|
||||
dynamic "nested" {
|
||||
for_each = test_thing.a.list
|
||||
content {
|
||||
foo = test_thing.b.id
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user