mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 22:00:34 -05:00
16 lines
214 B
HCL
16 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
|
|
}
|