mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06: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
|
|
}
|