mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
14 lines
242 B
Terraform
14 lines
242 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
count = "2"
|
||
|
lifecycle { create_before_destroy = true }
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "bar" {
|
||
|
count = "2"
|
||
|
lifecycle { create_before_destroy = true }
|
||
|
}
|
||
|
|
||
|
output "out" {
|
||
|
value = "${aws_instance.foo.0.id}"
|
||
|
}
|