mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-11 04:00:50 -04: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}"
|
|
}
|