mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 12:20:28 -06:00
8 lines
123 B
HCL
8 lines
123 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
resource "aws_instance" "web" {}
|
|
|
|
output "foo" {
|
|
value = "${aws_instance.web.foo}"
|
|
}
|