Files
Manuel Romero e41f783169 azrds
2022-10-05 09:36:15 +02:00

12 lines
243 B
HCL

output "db_server_fqdn" {
value = azurerm_postgresql_flexible_server.postgresql-server.fqdn
}
output "root_username" {
value = var.admin_login
}
output "root_username_password" {
value = nonsensitive(random_password.password.result)
}