opentofu/terraform/test-fixtures/apply-destroy-outputs/main.tf
Mitchell Hashimoto d28e5a1638 dos2unix
2014-07-28 10:43:00 -07:00

15 lines
219 B
HCL

resource "aws_instance" "foo" {
id = "foo"
num = "2"
}
resource "aws_instance" "bar" {
id = "bar"
foo = "{aws_instance.foo.num}"
dep = "foo"
}
output "foo" {
value = "${aws_instance.foo.id}"
}