15 lines
393 B
HCL
15 lines
393 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 "storage_path" {
|
|
value = var.storage_path
|
|
}
|
|
output "nginx_files" {
|
|
value = module.minio_nginx_config.files
|
|
}
|