published on Friday, Jul 3, 2026 by Pulumi
published on Friday, Jul 3, 2026 by Pulumi
Provides a DigitalOcean vector database resource. Vector databases are powered by Weaviate and are managed independently from standard managed database clusters.
Example Usage
Create a new vector database
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";
const example = new digitalocean.VectorDatabase("example", {
name: "example-vector-db",
region: "nyc1",
size: "db-s-1vcpu-1gb",
tags: ["production"],
});
import pulumi
import pulumi_digitalocean as digitalocean
example = digitalocean.VectorDatabase("example",
name="example-vector-db",
region="nyc1",
size="db-s-1vcpu-1gb",
tags=["production"])
package main
import (
"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := digitalocean.NewVectorDatabase(ctx, "example", &digitalocean.VectorDatabaseArgs{
Name: pulumi.String("example-vector-db"),
Region: pulumi.String("nyc1"),
Size: pulumi.String("db-s-1vcpu-1gb"),
Tags: pulumi.StringArray{
pulumi.String("production"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;
return await Deployment.RunAsync(() =>
{
var example = new DigitalOcean.VectorDatabase("example", new()
{
Name = "example-vector-db",
Region = "nyc1",
Size = "db-s-1vcpu-1gb",
Tags = new[]
{
"production",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.VectorDatabase;
import com.pulumi.digitalocean.VectorDatabaseArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new VectorDatabase("example", VectorDatabaseArgs.builder()
.name("example-vector-db")
.region("nyc1")
.size("db-s-1vcpu-1gb")
.tags("production")
.build());
}
}
resources:
example:
type: digitalocean:VectorDatabase
properties:
name: example-vector-db
region: nyc1
size: db-s-1vcpu-1gb
tags:
- production
pulumi {
required_providers {
digitalocean = {
source = "pulumi/digitalocean"
}
}
}
resource "digitalocean_vectordatabase" "example" {
name = "example-vector-db"
region = "nyc1"
size = "db-s-1vcpu-1gb"
tags = ["production"]
}
Create a vector database with advanced configuration
import * as pulumi from "@pulumi/pulumi";
import * as digitalocean from "@pulumi/digitalocean";
const example = new digitalocean.VectorDatabase("example", {
name: "example-vector-db",
region: "nyc1",
size: "db-s-2vcpu-2gb",
config: {
defaultQuantization: "none",
enableAutoSchema: true,
weaviateVersion: "1.25.0",
},
});
import pulumi
import pulumi_digitalocean as digitalocean
example = digitalocean.VectorDatabase("example",
name="example-vector-db",
region="nyc1",
size="db-s-2vcpu-2gb",
config={
"default_quantization": "none",
"enable_auto_schema": True,
"weaviate_version": "1.25.0",
})
package main
import (
"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := digitalocean.NewVectorDatabase(ctx, "example", &digitalocean.VectorDatabaseArgs{
Name: pulumi.String("example-vector-db"),
Region: pulumi.String("nyc1"),
Size: pulumi.String("db-s-2vcpu-2gb"),
Config: &digitalocean.VectorDatabaseConfigArgs{
DefaultQuantization: pulumi.String("none"),
EnableAutoSchema: pulumi.Bool(true),
WeaviateVersion: pulumi.String("1.25.0"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using DigitalOcean = Pulumi.DigitalOcean;
return await Deployment.RunAsync(() =>
{
var example = new DigitalOcean.VectorDatabase("example", new()
{
Name = "example-vector-db",
Region = "nyc1",
Size = "db-s-2vcpu-2gb",
Config = new DigitalOcean.Inputs.VectorDatabaseConfigArgs
{
DefaultQuantization = "none",
EnableAutoSchema = true,
WeaviateVersion = "1.25.0",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.digitalocean.VectorDatabase;
import com.pulumi.digitalocean.VectorDatabaseArgs;
import com.pulumi.digitalocean.inputs.VectorDatabaseConfigArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new VectorDatabase("example", VectorDatabaseArgs.builder()
.name("example-vector-db")
.region("nyc1")
.size("db-s-2vcpu-2gb")
.config(VectorDatabaseConfigArgs.builder()
.defaultQuantization("none")
.enableAutoSchema(true)
.weaviateVersion("1.25.0")
.build())
.build());
}
}
resources:
example:
type: digitalocean:VectorDatabase
properties:
name: example-vector-db
region: nyc1
size: db-s-2vcpu-2gb
config:
defaultQuantization: none
enableAutoSchema: true
weaviateVersion: 1.25.0
pulumi {
required_providers {
digitalocean = {
source = "pulumi/digitalocean"
}
}
}
resource "digitalocean_vectordatabase" "example" {
name = "example-vector-db"
region = "nyc1"
size = "db-s-2vcpu-2gb"
config = {
default_quantization = "none"
enable_auto_schema = true
weaviate_version = "1.25.0"
}
}
Create VectorDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VectorDatabase(name: string, args: VectorDatabaseArgs, opts?: CustomResourceOptions);@overload
def VectorDatabase(resource_name: str,
args: VectorDatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VectorDatabase(resource_name: str,
opts: Optional[ResourceOptions] = None,
region: Optional[str] = None,
size: Optional[str] = None,
config: Optional[VectorDatabaseConfigArgs] = None,
name: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None)func NewVectorDatabase(ctx *Context, name string, args VectorDatabaseArgs, opts ...ResourceOption) (*VectorDatabase, error)public VectorDatabase(string name, VectorDatabaseArgs args, CustomResourceOptions? opts = null)
public VectorDatabase(String name, VectorDatabaseArgs args)
public VectorDatabase(String name, VectorDatabaseArgs args, CustomResourceOptions options)
type: digitalocean:VectorDatabase
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "digitalocean_vectordatabase" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args VectorDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VectorDatabaseArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VectorDatabaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VectorDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VectorDatabaseArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var vectorDatabaseResource = new DigitalOcean.VectorDatabase("vectorDatabaseResource", new()
{
Region = "string",
Size = "string",
Config = new DigitalOcean.Inputs.VectorDatabaseConfigArgs
{
DefaultQuantization = "string",
EnableAutoSchema = false,
WeaviateVersion = "string",
},
Name = "string",
ProjectId = "string",
Tags = new[]
{
"string",
},
});
example, err := digitalocean.NewVectorDatabase(ctx, "vectorDatabaseResource", &digitalocean.VectorDatabaseArgs{
Region: pulumi.String("string"),
Size: pulumi.String("string"),
Config: &digitalocean.VectorDatabaseConfigArgs{
DefaultQuantization: pulumi.String("string"),
EnableAutoSchema: pulumi.Bool(false),
WeaviateVersion: pulumi.String("string"),
},
Name: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
resource "digitalocean_vectordatabase" "vectorDatabaseResource" {
region = "string"
size = "string"
config = {
default_quantization = "string"
enable_auto_schema = false
weaviate_version = "string"
}
name = "string"
project_id = "string"
tags = ["string"]
}
var vectorDatabaseResource = new VectorDatabase("vectorDatabaseResource", VectorDatabaseArgs.builder()
.region("string")
.size("string")
.config(VectorDatabaseConfigArgs.builder()
.defaultQuantization("string")
.enableAutoSchema(false)
.weaviateVersion("string")
.build())
.name("string")
.projectId("string")
.tags("string")
.build());
vector_database_resource = digitalocean.VectorDatabase("vectorDatabaseResource",
region="string",
size="string",
config={
"default_quantization": "string",
"enable_auto_schema": False,
"weaviate_version": "string",
},
name="string",
project_id="string",
tags=["string"])
const vectorDatabaseResource = new digitalocean.VectorDatabase("vectorDatabaseResource", {
region: "string",
size: "string",
config: {
defaultQuantization: "string",
enableAutoSchema: false,
weaviateVersion: "string",
},
name: "string",
projectId: "string",
tags: ["string"],
});
type: digitalocean:VectorDatabase
properties:
config:
defaultQuantization: string
enableAutoSchema: false
weaviateVersion: string
name: string
projectId: string
region: string
size: string
tags:
- string
VectorDatabase Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VectorDatabase resource accepts the following input properties:
- Region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - Size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - Config
Pulumi.
Digital Ocean. Inputs. Vector Database Config - Advanced configuration for the vector database. The structure is documented below.
- Name string
- The name of the vector database. Changing this forces a new resource to be created.
- Project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- List<string>
- A list of tag names to be applied to the vector database.
- Region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - Size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - Config
Vector
Database Config Args - Advanced configuration for the vector database. The structure is documented below.
- Name string
- The name of the vector database. Changing this forces a new resource to be created.
- Project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- []string
- A list of tag names to be applied to the vector database.
- region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - config object
- Advanced configuration for the vector database. The structure is documented below.
- name string
- The name of the vector database. Changing this forces a new resource to be created.
- project_
id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- list(string)
- A list of tag names to be applied to the vector database.
- region String
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size String
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - config
Vector
Database Config - Advanced configuration for the vector database. The structure is documented below.
- name String
- The name of the vector database. Changing this forces a new resource to be created.
- project
Id String - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- List<String>
- A list of tag names to be applied to the vector database.
- region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - config
Vector
Database Config - Advanced configuration for the vector database. The structure is documented below.
- name string
- The name of the vector database. Changing this forces a new resource to be created.
- project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- string[]
- A list of tag names to be applied to the vector database.
- region str
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size str
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - config
Vector
Database Config Args - Advanced configuration for the vector database. The structure is documented below.
- name str
- The name of the vector database. Changing this forces a new resource to be created.
- project_
id str - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- Sequence[str]
- A list of tag names to be applied to the vector database.
- region String
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size String
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - config Property Map
- Advanced configuration for the vector database. The structure is documented below.
- name String
- The name of the vector database. Changing this forces a new resource to be created.
- project
Id String - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- List<String>
- A list of tag names to be applied to the vector database.
Outputs
All input properties are implicitly available as output properties. Additionally, the VectorDatabase resource produces the following output properties:
- Created
At string - The date and time when the vector database was created.
- Endpoints
List<Pulumi.
Digital Ocean. Outputs. Vector Database Endpoint> - The connection endpoints for the vector database. The structure is documented below.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Uuid string - The UUID of the account that owns the vector database.
- Status string
- The current status of the vector database (ex.
active). - Updated
At string - The date and time when the vector database was last updated.
- Created
At string - The date and time when the vector database was created.
- Endpoints
[]Vector
Database Endpoint - The connection endpoints for the vector database. The structure is documented below.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Uuid string - The UUID of the account that owns the vector database.
- Status string
- The current status of the vector database (ex.
active). - Updated
At string - The date and time when the vector database was last updated.
- created_
at string - The date and time when the vector database was created.
- endpoints list(object)
- The connection endpoints for the vector database. The structure is documented below.
- id string
- The provider-assigned unique ID for this managed resource.
- owner_
uuid string - The UUID of the account that owns the vector database.
- status string
- The current status of the vector database (ex.
active). - updated_
at string - The date and time when the vector database was last updated.
- created
At String - The date and time when the vector database was created.
- endpoints
List<Vector
Database Endpoint> - The connection endpoints for the vector database. The structure is documented below.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Uuid String - The UUID of the account that owns the vector database.
- status String
- The current status of the vector database (ex.
active). - updated
At String - The date and time when the vector database was last updated.
- created
At string - The date and time when the vector database was created.
- endpoints
Vector
Database Endpoint[] - The connection endpoints for the vector database. The structure is documented below.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Uuid string - The UUID of the account that owns the vector database.
- status string
- The current status of the vector database (ex.
active). - updated
At string - The date and time when the vector database was last updated.
- created_
at str - The date and time when the vector database was created.
- endpoints
Sequence[Vector
Database Endpoint] - The connection endpoints for the vector database. The structure is documented below.
- id str
- The provider-assigned unique ID for this managed resource.
- owner_
uuid str - The UUID of the account that owns the vector database.
- status str
- The current status of the vector database (ex.
active). - updated_
at str - The date and time when the vector database was last updated.
- created
At String - The date and time when the vector database was created.
- endpoints List<Property Map>
- The connection endpoints for the vector database. The structure is documented below.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Uuid String - The UUID of the account that owns the vector database.
- status String
- The current status of the vector database (ex.
active). - updated
At String - The date and time when the vector database was last updated.
Look up Existing VectorDatabase Resource
Get an existing VectorDatabase resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VectorDatabaseState, opts?: CustomResourceOptions): VectorDatabase@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config: Optional[VectorDatabaseConfigArgs] = None,
created_at: Optional[str] = None,
endpoints: Optional[Sequence[VectorDatabaseEndpointArgs]] = None,
name: Optional[str] = None,
owner_uuid: Optional[str] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
size: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[str] = None) -> VectorDatabasefunc GetVectorDatabase(ctx *Context, name string, id IDInput, state *VectorDatabaseState, opts ...ResourceOption) (*VectorDatabase, error)public static VectorDatabase Get(string name, Input<string> id, VectorDatabaseState? state, CustomResourceOptions? opts = null)public static VectorDatabase get(String name, Output<String> id, VectorDatabaseState state, CustomResourceOptions options)resources: _: type: digitalocean:VectorDatabase get: id: ${id}import {
to = digitalocean_vectordatabase.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Config
Pulumi.
Digital Ocean. Inputs. Vector Database Config - Advanced configuration for the vector database. The structure is documented below.
- Created
At string - The date and time when the vector database was created.
- Endpoints
List<Pulumi.
Digital Ocean. Inputs. Vector Database Endpoint> - The connection endpoints for the vector database. The structure is documented below.
- Name string
- The name of the vector database. Changing this forces a new resource to be created.
- Owner
Uuid string - The UUID of the account that owns the vector database.
- Project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- Region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - Size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - Status string
- The current status of the vector database (ex.
active). - List<string>
- A list of tag names to be applied to the vector database.
- Updated
At string - The date and time when the vector database was last updated.
- Config
Vector
Database Config Args - Advanced configuration for the vector database. The structure is documented below.
- Created
At string - The date and time when the vector database was created.
- Endpoints
[]Vector
Database Endpoint Args - The connection endpoints for the vector database. The structure is documented below.
- Name string
- The name of the vector database. Changing this forces a new resource to be created.
- Owner
Uuid string - The UUID of the account that owns the vector database.
- Project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- Region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - Size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - Status string
- The current status of the vector database (ex.
active). - []string
- A list of tag names to be applied to the vector database.
- Updated
At string - The date and time when the vector database was last updated.
- config object
- Advanced configuration for the vector database. The structure is documented below.
- created_
at string - The date and time when the vector database was created.
- endpoints list(object)
- The connection endpoints for the vector database. The structure is documented below.
- name string
- The name of the vector database. Changing this forces a new resource to be created.
- owner_
uuid string - The UUID of the account that owns the vector database.
- project_
id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - status string
- The current status of the vector database (ex.
active). - list(string)
- A list of tag names to be applied to the vector database.
- updated_
at string - The date and time when the vector database was last updated.
- config
Vector
Database Config - Advanced configuration for the vector database. The structure is documented below.
- created
At String - The date and time when the vector database was created.
- endpoints
List<Vector
Database Endpoint> - The connection endpoints for the vector database. The structure is documented below.
- name String
- The name of the vector database. Changing this forces a new resource to be created.
- owner
Uuid String - The UUID of the account that owns the vector database.
- project
Id String - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- region String
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size String
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - status String
- The current status of the vector database (ex.
active). - List<String>
- A list of tag names to be applied to the vector database.
- updated
At String - The date and time when the vector database was last updated.
- config
Vector
Database Config - Advanced configuration for the vector database. The structure is documented below.
- created
At string - The date and time when the vector database was created.
- endpoints
Vector
Database Endpoint[] - The connection endpoints for the vector database. The structure is documented below.
- name string
- The name of the vector database. Changing this forces a new resource to be created.
- owner
Uuid string - The UUID of the account that owns the vector database.
- project
Id string - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- region string
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size string
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - status string
- The current status of the vector database (ex.
active). - string[]
- A list of tag names to be applied to the vector database.
- updated
At string - The date and time when the vector database was last updated.
- config
Vector
Database Config Args - Advanced configuration for the vector database. The structure is documented below.
- created_
at str - The date and time when the vector database was created.
- endpoints
Sequence[Vector
Database Endpoint Args] - The connection endpoints for the vector database. The structure is documented below.
- name str
- The name of the vector database. Changing this forces a new resource to be created.
- owner_
uuid str - The UUID of the account that owns the vector database.
- project_
id str - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- region str
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size str
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - status str
- The current status of the vector database (ex.
active). - Sequence[str]
- A list of tag names to be applied to the vector database.
- updated_
at str - The date and time when the vector database was last updated.
- config Property Map
- Advanced configuration for the vector database. The structure is documented below.
- created
At String - The date and time when the vector database was created.
- endpoints List<Property Map>
- The connection endpoints for the vector database. The structure is documented below.
- name String
- The name of the vector database. Changing this forces a new resource to be created.
- owner
Uuid String - The UUID of the account that owns the vector database.
- project
Id String - The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
- region String
- The slug identifier for the region where the vector database will be created (ex.
nyc1). Changing this forces a new resource to be created. - size String
- The slug identifier representing the size of the vector database (ex.
db-s-1vcpu-1gb). - status String
- The current status of the vector database (ex.
active). - List<String>
- A list of tag names to be applied to the vector database.
- updated
At String - The date and time when the vector database was last updated.
Supporting Types
VectorDatabaseConfig, VectorDatabaseConfigArgs
- Default
Quantization string - The default vector quantization method applied to new collections.
- Enable
Auto boolSchema - Whether Weaviate's auto-schema feature is enabled.
- Weaviate
Version string - The Weaviate engine version used by the vector database.
- Default
Quantization string - The default vector quantization method applied to new collections.
- Enable
Auto boolSchema - Whether Weaviate's auto-schema feature is enabled.
- Weaviate
Version string - The Weaviate engine version used by the vector database.
- default_
quantization string - The default vector quantization method applied to new collections.
- enable_
auto_ boolschema - Whether Weaviate's auto-schema feature is enabled.
- weaviate_
version string - The Weaviate engine version used by the vector database.
- default
Quantization String - The default vector quantization method applied to new collections.
- enable
Auto BooleanSchema - Whether Weaviate's auto-schema feature is enabled.
- weaviate
Version String - The Weaviate engine version used by the vector database.
- default
Quantization string - The default vector quantization method applied to new collections.
- enable
Auto booleanSchema - Whether Weaviate's auto-schema feature is enabled.
- weaviate
Version string - The Weaviate engine version used by the vector database.
- default_
quantization str - The default vector quantization method applied to new collections.
- enable_
auto_ boolschema - Whether Weaviate's auto-schema feature is enabled.
- weaviate_
version str - The Weaviate engine version used by the vector database.
- default
Quantization String - The default vector quantization method applied to new collections.
- enable
Auto BooleanSchema - Whether Weaviate's auto-schema feature is enabled.
- weaviate
Version String - The Weaviate engine version used by the vector database.
VectorDatabaseEndpoint, VectorDatabaseEndpointArgs
Import
Vector databases can be imported using their id, e.g.
$ pulumi import digitalocean:index/vectorDatabase:VectorDatabase example 245bcfd0-7f31-4ce6-a2bc-475a116cca97
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- DigitalOcean pulumi/pulumi-digitalocean
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
digitaloceanTerraform Provider.
published on Friday, Jul 3, 2026 by Pulumi