mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
12 lines
209 B
HCL
12 lines
209 B
HCL
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
|
|
}
|