2024-06-21 16:02:42 +00:00
|
|
|
output "auth" {
|
|
|
|
value = {
|
2024-06-28 10:43:20 +00:00
|
|
|
user = var.admin_username
|
|
|
|
password = nonsensitive(random_password.minio_password.result)
|
2024-06-21 16:02:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
output "domain" {
|
|
|
|
value = local.SERVER_URL
|
|
|
|
}
|
2024-06-23 03:09:02 +00:00
|
|
|
output "storage_path" {
|
|
|
|
value = var.storage_path
|
|
|
|
}
|
2024-06-21 16:02:42 +00:00
|
|
|
output "nginx_files" {
|
|
|
|
value = module.minio_nginx_config.files
|
|
|
|
}
|