terraform/internal/terraform/testdata/plan-diffvar/main.tf

8 lines
110 B
Terraform
Raw Permalink Normal View History

2014-07-28 19:43:00 +02:00
resource "aws_instance" "foo" {
num = "3"
2014-07-28 19:43:00 +02:00
}
resource "aws_instance" "bar" {
num = aws_instance.foo.num
2014-07-28 19:43:00 +02:00
}