Skip to content

Instantly share code, notes, and snippets.

@vancluever
Last active April 15, 2017 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vancluever/72a1b0735ef468f48f613dd9a5ad41d8 to your computer and use it in GitHub Desktop.
Save vancluever/72a1b0735ef468f48f613dd9a5ad41d8 to your computer and use it in GitHub Desktop.
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