mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 12:20:28 -06:00
b0a83adea4
This avoids issues where we were interpolating when we didn't need to
6 lines
105 B
HCL
6 lines
105 B
HCL
resource "aws_instance" "web" {}
|
|
|
|
resource "aws_instance" "db" {
|
|
ami = "${aws_instance.web.id}"
|
|
}
|