mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-13 09:32:24 -06:00
10 lines
107 B
Terraform
10 lines
107 B
Terraform
|
|
||
|
resource "test" "foo" {
|
||
|
dynamic "foo" {
|
||
|
for_each = []
|
||
|
content {
|
||
|
from = "base"
|
||
|
}
|
||
|
}
|
||
|
}
|