2024-11-23 16:55:01 +00:00
|
|
|
output "configuration" {
|
2024-07-29 19:28:08 +00:00
|
|
|
value = {
|
|
|
|
database = {
|
|
|
|
username = module.postgres.username
|
|
|
|
password = module.postgres.password
|
|
|
|
database = module.postgres.database
|
|
|
|
port = module.postgres.ports[0]
|
|
|
|
}
|
|
|
|
quassel = {
|
2024-08-03 22:07:23 +00:00
|
|
|
port = module.service.ports[0]
|
2024-07-29 19:28:08 +00:00
|
|
|
}
|
|
|
|
}
|
2024-11-23 16:55:01 +00:00
|
|
|
}
|
|
|
|
output "docker_service" {
|
2024-11-23 18:50:24 +00:00
|
|
|
value = module.service.docker_service
|
2024-11-23 16:55:01 +00:00
|
|
|
}
|
|
|
|
output "postgres_service" {
|
2024-11-23 18:50:24 +00:00
|
|
|
value = module.postgres.docker_service
|
2024-11-27 00:12:10 +00:00
|
|
|
}
|
|
|
|
output "postgres" {
|
|
|
|
value = module.postgres
|
2024-12-22 06:44:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
output "network" {
|
|
|
|
value = module.network.network
|
2024-07-29 19:28:08 +00:00
|
|
|
}
|