mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-27 00:57:11 -04:00
7 lines
124 B
HCL
7 lines
124 B
HCL
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
}
|
|
|
|
resource "test_instance" "bar" {
|
|
ami = "${test_instance.foo.ami}"
|
|
}
|