terraform/internal/command/testdata/test/partial_updates/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
214 B
Terraform
Raw Permalink Normal View History

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
}