terraform/configs/testdata/valid-files/resources-dependson-quoted.tf

9 lines
136 B
HCL

resource "aws_security_group" "firewall" {
}
resource "aws_instance" "web" {
depends_on = [
"aws_security_group.firewall",
]
}