mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-21 11:01:23 -05:00
9 lines
209 B
HCL
9 lines
209 B
HCL
resource "aws_vpc" "metoo" {}
|
|
resource "aws_instance" "notme" { }
|
|
resource "aws_instance" "me" {
|
|
vpc_id = "${aws_vpc.metoo.id}"
|
|
}
|
|
resource "aws_elb" "meneither" {
|
|
instances = ["${aws_instance.me.*.id}"]
|
|
}
|