4 lines
74 B
Terraform
4 lines
74 B
Terraform
|
resource "aws_instance" "web" {
|
||
|
depends_on = ["aws_instance.db"]
|
||
|
}
|