nebula/docker/outputs.tf

16 lines
276 B
Terraform
Raw Normal View History

2017-12-28 16:42:21 +00:00
output "lychee-ip" {
value = "${docker_container.lychee.ip_address}"
}
2018-02-04 10:36:20 +00:00
2018-02-09 20:56:31 +00:00
output "names-traefik" {
value = "${docker_container.traefik.name}"
}
2018-02-18 07:48:20 +00:00
output "traefik-network-id" {
value = "${docker_network.traefik.id}"
}
2018-02-18 07:48:20 +00:00
output "auth-header" {
value = "${var.basic_auth}"
}