mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-17 01:03:30 -04:00
8 lines
100 B
HCL
8 lines
100 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
}
|
|
|
|
output "num" {
|
|
value = "${aws_instance.foo.num}"
|
|
}
|