12 lines
340 B
HCL
12 lines
340 B
HCL
output "auth" {
|
|
value = {
|
|
user = docker_service.minio.task_spec[0].container_spec[0].env.MINIO_ROOT_USER
|
|
password = nonsensitive(docker_service.minio.task_spec[0].container_spec[0].env.MINIO_ROOT_PASSWORD)
|
|
}
|
|
}
|
|
output "domain" {
|
|
value = local.SERVER_URL
|
|
}
|
|
output "nginx_files" {
|
|
value = module.minio_nginx_config.files
|
|
}
|