13 lines
340 B
Terraform
13 lines
340 B
Terraform
|
output "auth" {
|
||
|
value = {
|
||
|
user = docker_service.minio.task_spec[0].container_spec[0].env.MINIO_ROOT_USER
|
||
|
password = nonsensitive(docker_service.minio.task_spec[0].container_spec[0].env.MINIO_ROOT_PASSWORD)
|
||
|
}
|
||
|
}
|
||
|
output "domain" {
|
||
|
value = local.SERVER_URL
|
||
|
}
|
||
|
output "nginx_files" {
|
||
|
value = module.minio_nginx_config.files
|
||
|
}
|