37 lines
743 B
HCL
37 lines
743 B
HCL
output "hosts" {
|
|
value = module.infrastructure.hosts
|
|
}
|
|
|
|
output "authentik_data" {
|
|
value = module.services.authentik_data
|
|
sensitive = true
|
|
}
|
|
|
|
output "healthchecksio" {
|
|
value = module.infrastructure.healthchecksio
|
|
}
|
|
|
|
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
|
|
}
|