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

16 lines
302 B
Terraform
Raw Permalink Normal View History

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
}