43 lines
854 B
HCL
43 lines
854 B
HCL
output "hosts" {
|
|
value = module.infrastructure.hosts
|
|
}
|
|
|
|
output "services" {
|
|
value = var.services
|
|
sensitive = true # Would be too much output
|
|
}
|
|
|
|
output "authentik_data" {
|
|
value = module.services.authentik_data
|
|
sensitive = true
|
|
}
|
|
|
|
output "healthchecksio" {
|
|
value = module.infrastructure.healthchecksio
|
|
sensitive = true
|
|
}
|
|
|
|
output "postgresql_data" {
|
|
value = module.services.postgresql_data
|
|
sensitive = true
|
|
}
|
|
|
|
output "postgresql" {
|
|
value = {
|
|
"host" = var.postgresql_host
|
|
"port" = var.postgresql_port
|
|
}
|
|
}
|
|
|
|
output "scaleway_data" {
|
|
value = module.infrastructure.scaleway_data
|
|
sensitive = true
|
|
}
|
|
|
|
output "scaleway_registry_endpoint_public" {
|
|
value = module.infrastructure.scaleway_registry_endpoint_public
|
|
}
|
|
|
|
output "scaleway_registry_endpoint_private" {
|
|
value = module.infrastructure.scaleway_registry_endpoint_private
|
|
}
|