mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-11 08:32:19 -06:00
9 lines
142 B
HCL
9 lines
142 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.id}"
|
|
require_new = "yes"
|
|
}
|