Is there any way I can use a Terraform template output to another Terraform template\'s input?
Ex: I have a Terraform template which creates an ELB and I have another T
Looks like in newer versions of Terraform you'd access the output var like this
your_elb = "${data.terraform_remote_state.your_state.your_output_resource}"
All the rest is the same, just how you referenced it.