16 lines
352 B
Terraform
16 lines
352 B
Terraform
|
output "quassel" {
|
||
|
value = {
|
||
|
hostname = docker_service.quassel_db.name
|
||
|
port = local.quassel_port
|
||
|
}
|
||
|
}
|
||
|
output "postgres" {
|
||
|
value = {
|
||
|
hostname = docker_service.quassel_db.name
|
||
|
port = local.pg_port_external
|
||
|
username = local.pg_username
|
||
|
password = nonsensitive(local.pg_password)
|
||
|
database = local.pg_database
|
||
|
}
|
||
|
}
|