output "proxy_endpoints" {
  description = "Map of RDS Proxy endpoints keyed by proxy logical name"
  value       = { for k, v in aws_db_proxy.this : k => v.endpoint }
}

output "proxy_arns" {
  description = "Map of RDS Proxy ARNs"
  value       = { for k, v in aws_db_proxy.this : k => v.arn }
}
