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