opentofu/terraform/testdata/graph-depends-on-count/main.tf
2019-06-30 10:16:15 +02:00

7 lines
113 B
HCL

resource "aws_instance" "web" {}
resource "aws_instance" "db" {
depends_on = ["aws_instance.web"]
count = 2
}