terraform/internal/command/testdata/graph-cyclic/main.tf

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

13 lines
209 B
Terraform
Raw Permalink Normal View History

locals {
test1 = local.test2
test2 = local.test1
}
resource "test_instance" "foo" {
ami = resource.test_instance.bar.ami
}
resource "test_instance" "bar" {
ami = resource.test_instance.foo.ami
}