github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/partial_updates/main.tf (about) 1 2 resource "test_resource" "resource" {} 3 4 locals { 5 follow = { 6 (test_resource.resource.id): "follow" 7 } 8 } 9 10 resource "test_resource" "follow" { 11 for_each = local.follow 12 13 id = each.key 14 value = each.value 15 }