Skip to content

Instantly share code, notes, and snippets.

@vancluever
Last active April 15, 2017 17:56
Embed
What would you like to do?
Using the new-form names module (Terraform v0.9.x and higher)
module "names" {
source = "./names"
endpoint_name = "frontend"
}
output "endpoint_name" {
value = "${module.names.endpoint_name}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment