infrastructure/output.tf

44 lines
854 B
Terraform
Raw Normal View History

2024-09-25 11:23:52 +00:00
output "hosts" {
2024-09-29 23:22:03 +00:00
value = module.infrastructure.hosts
2024-09-25 11:23:52 +00:00
}
2024-10-06 17:08:13 +00:00
output "services" {
value = var.services
sensitive = true # Would be too much output
}
2024-09-28 12:14:09 +00:00
output "authentik_data" {
2024-09-29 23:22:03 +00:00
value = module.services.authentik_data
2024-09-28 12:14:09 +00:00
sensitive = true
}
output "healthchecksio" {
value = module.infrastructure.healthchecksio
2024-10-08 23:32:35 +00:00
sensitive = true
}
2024-09-28 16:24:07 +00:00
output "postgresql_data" {
2024-09-29 23:22:03 +00:00
value = module.services.postgresql_data
2024-09-27 23:59:53 +00:00
sensitive = true
}
output "postgresql" {
value = {
"host" = var.postgresql_host
"port" = var.postgresql_port
}
}
2024-09-28 16:24:07 +00:00
output "scaleway_data" {
2024-09-29 23:22:03 +00:00
value = module.infrastructure.scaleway_data
2024-09-28 16:24:07 +00:00
sensitive = true
}
2024-09-27 20:56:49 +00:00
output "scaleway_registry_endpoint_public" {
2024-09-29 23:22:03 +00:00
value = module.infrastructure.scaleway_registry_endpoint_public
2024-09-27 20:56:49 +00:00
}
output "scaleway_registry_endpoint_private" {
2024-09-29 23:22:03 +00:00
value = module.infrastructure.scaleway_registry_endpoint_private
2024-09-27 20:56:49 +00:00
}