Managed Databases

Connect database to VPC

Attach a database created without a VPC to one of your VPCs. The private endpoint {database_id}.db.raffusercloud.com becomes reachable from inside that VPC.

post/api/v1/databases/{database_id}/vpc

Path parameters

database_idstring required

Database ID (UUID) or short id (the database_id field, e.g. a1b2c3d4)

Request body

vpc_idstring uuid required

VPC to attach the database's private endpoint to

Response

Database connected to the VPC

successboolean

Example response

{
  "database": {
    "name": "orders-db",
    "engine": "postgres",
    "engine_version": "16",
    "region": "us-east",
    "plan_id": 5,
    "storage_gb": 25,
    "connection_host": "a1b2c3d4.db.raffusercloud.com",
    "connection_port": 6432,
    "billing_type": "payg",
    "price_per_hour": 0.010945,
    "monthly_price": 7.99,
    "public_port": 25060,
    "public_dns_hostname": "a1b2c3d4.public.db.raffusercloud.com",
    "public_allowlist": [
      "203.0.113.0/24"
    ]
  }
}

Changes