You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"digitalocean_database_connection_pool" {
source="./modules/digitalocean/r/digitalocean_database_connection_pool"# cluster_id - (required) is a type of stringcluster_id=null# db_name - (required) is a type of stringdb_name=null# mode - (required) is a type of stringmode=null# name - (required) is a type of stringname=null# size - (required) is a type of numbersize=null# user - (required) is a type of stringuser=null
}
resource"digitalocean_database_connection_pool""this" {
# cluster_id - (required) is a type of stringcluster_id=var.cluster_id# db_name - (required) is a type of stringdb_name=var.db_name# mode - (required) is a type of stringmode=var.mode# name - (required) is a type of stringname=var.name# size - (required) is a type of numbersize=var.size# user - (required) is a type of stringuser=var.user
}