nebula/docker/outputs.tf

17 lines
268 B
Terraform
Raw Permalink Normal View History

2019-08-11 18:51:47 +00:00
# output "lychee-ip" {
# value = "${docker_container.lychee.ip_address}"
# }
2018-02-09 20:56:31 +00:00
output "names-traefik" {
value = docker_container.traefik.name
2018-02-09 20:56:31 +00:00
}
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
2018-02-18 07:48:20 +00:00
}