15 lines
302 B
HCL
15 lines
302 B
HCL
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
|
|
}
|