DigitalOcean-public.v2-new_VPCs
Create a New VPC
To create a VPC, send a POST request to /v2/vpcs specifying the attributes in the table below in the JSON body.
Note: If you do not currently have a VPC network in a specific datacenter region, the first one that you create will be set as the default for that region. The default VPC for a region cannot be changed or deleted.
post/v2/vpcs
Request body
Example request
{
"name": "env.prod-vpc",
"description": "VPC for production environment",
"region": "nyc1",
"ip_range": "10.10.10.0/24"
}Response
The response will be a JSON object with a key called vpc. The value of this will be an object that contains the standard attributes associated with a VPC.
Example response
{
"vpc": {
"name": "env.prod-vpc",
"description": "VPC for production environment",
"region": "nyc1",
"ip_range": "10.10.10.0/24",
"default": true,
"id": "5a4981aa-9653-4bd1-bef5-d6bff52042e4",
"urn": "do:droplet:13457723",
"created_at": "2020-03-13T19:20:47.442049222Z"
}
}