15 lines
No EOL
298 B
HCL
15 lines
No EOL
298 B
HCL
output "auth" {
|
|
value = local.auth
|
|
}
|
|
output "service_name" {
|
|
value = module.service.service_name
|
|
}
|
|
output "ports" {
|
|
value = module.service.ports
|
|
}
|
|
output "docker_service" {
|
|
value = module.service.docker_service
|
|
}
|
|
output "endpoint" {
|
|
value = "redis://${module.service.service_name}:6379"
|
|
} |