This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/modules/minio/outputs.tf

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
}