mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
9 lines
161 B
Terraform
9 lines
161 B
Terraform
|
resource "aws_instance" "create" {
|
||
|
bar = "abc"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "other" {
|
||
|
var = "${aws_instance.create.id}"
|
||
|
foo = "${aws_instance.create.bar}"
|
||
|
}
|