digitalocean_database_connection_pool

Provides information on a DigitalOcean PostgreSQL database connection pool.

Example Usage

data "digitalocean_database_cluster" "example" {
  name = "example-cluster"
}
data "digitalocean_database_connection_pool" "read-only" {
  cluster_id = data.digitalocean_database_cluster.example.id
  name       = "pool-01"
}
output "connection_pool_uri_output" {
  value = data.digitalocean_database_connection_pool.read-only.uri
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported: