Opinionated.tf/products/headscale/outputs.tf
2025-01-16 19:40:02 +01:00

9 lines
No EOL
185 B
HCL

output "postgres" {
value = module.postgres.endpoint
}
output "auth" {
value = {
username = random_pet.user.id
password = nonsensitive(random_password.password.result)
}
}