opentofu/terraform/testdata/apply-cancel/main.tf
2019-06-30 10:16:15 +02:00

8 lines
123 B
HCL

resource "aws_instance" "foo" {
value = "2"
}
resource "aws_instance" "bar" {
foo = "${aws_instance.foo.value}"
}