6 lines
87 B
HCL
6 lines
87 B
HCL
resource "aws_instance" "a" {}
|
|
|
|
output "a_output" {
|
|
value = "${aws_instance.a.id}"
|
|
}
|