mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 13:03:36 -04:00
10 lines
107 B
HCL
10 lines
107 B
HCL
|
|
resource "test" "foo" {
|
|
dynamic "foo" {
|
|
for_each = []
|
|
content {
|
|
from = "base"
|
|
}
|
|
}
|
|
}
|