output "auth" {
  value = {
    user     = var.admin_username
    password = nonsensitive(random_password.minio_password.result)
  }
}
output "domain" {
  value = local.SERVER_URL
}
output "storage_path" {
  value = var.storage_path
}
output "nginx_files" {
  value = module.minio_nginx_config.files
}