mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 13:03:36 -04:00
15 lines
224 B
HCL
15 lines
224 B
HCL
resource "aws_instance" "foo" {
|
|
count = 2
|
|
num = "2"
|
|
computed = data.aws_vpc.bar[count.index].id
|
|
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
data "aws_vpc" "bar" {
|
|
count = 2
|
|
foo = count.index
|
|
}
|