mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
12 lines
231 B
HCL
12 lines
231 B
HCL
resource "aws_instance" "foo" {
|
|
count = 2
|
|
num = "2"
|
|
compute = "${element(data.aws_vpc.bar.*.id, count.index)}"
|
|
lifecycle { create_before_destroy = true }
|
|
}
|
|
|
|
data "aws_vpc" "bar" {
|
|
count = 2
|
|
foo = "${count.index}"
|
|
}
|