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