mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04:00
8 lines
140 B
HCL
8 lines
140 B
HCL
resource "aws_instance" "create" {
|
|
provisioner "exec" {}
|
|
}
|
|
|
|
resource "aws_instance" "other" {
|
|
value = "${aws_instance.create.id}"
|
|
}
|