mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-20 09:14:37 -04:00
15 lines
214 B
HCL
15 lines
214 B
HCL
|
|
resource "test_resource" "resource" {}
|
|
|
|
locals {
|
|
follow = {
|
|
(test_resource.resource.id): "follow"
|
|
}
|
|
}
|
|
|
|
resource "test_resource" "follow" {
|
|
for_each = local.follow
|
|
|
|
id = each.key
|
|
value = each.value
|
|
}
|