mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
27 lines
367 B
HCL
27 lines
367 B
HCL
resource "aws_vpc" "notme" {}
|
|
|
|
resource "aws_subnet" "notme" {
|
|
depends_on = [
|
|
aws_vpc.notme,
|
|
]
|
|
}
|
|
|
|
resource "aws_instance" "me" {
|
|
depends_on = [
|
|
aws_subnet.notme,
|
|
]
|
|
}
|
|
|
|
resource "aws_instance" "notme" {}
|
|
resource "aws_instance" "metoo" {
|
|
depends_on = [
|
|
aws_instance.me,
|
|
]
|
|
}
|
|
|
|
resource "aws_elb" "me" {
|
|
depends_on = [
|
|
aws_instance.me,
|
|
]
|
|
}
|