1. Packages
  2. Turso Provider
  3. API Docs
  4. Database
turso 0.2.3 published on Friday, Mar 7, 2025 by celest-dev

turso.Database

Explore with Pulumi AI

turso logo
turso 0.2.3 published on Friday, Mar 7, 2025 by celest-dev

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as turso from "@pulumi/turso";
    
    const example = new turso.Database("example", {group: "a-group"});
    
    import pulumi
    import pulumi_turso as turso
    
    example = turso.Database("example", group="a-group")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/turso/turso"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := turso.NewDatabase(ctx, "example", &turso.DatabaseArgs{
    			Group: pulumi.String("a-group"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Turso = Pulumi.Turso;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Turso.Database("example", new()
        {
            Group = "a-group",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.turso.Database;
    import com.pulumi.turso.DatabaseArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 Database("example", DatabaseArgs.builder()
                .group("a-group")
                .build());
    
        }
    }
    
    resources:
      example:
        type: turso:Database
        properties:
          group: a-group
    

    Create Database Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Database(name: string, args: DatabaseArgs, opts?: CustomResourceOptions);
    @overload
    def Database(resource_name: str,
                 args: DatabaseArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Database(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 group: Optional[str] = None,
                 allow_attach: Optional[bool] = None,
                 block_reads: Optional[bool] = None,
                 block_writes: Optional[bool] = None,
                 database_id: Optional[str] = None,
                 is_schema: Optional[bool] = None,
                 name: Optional[str] = None,
                 schema: Optional[str] = None,
                 seed: Optional[DatabaseSeedArgs] = None,
                 size_limit: Optional[str] = None)
    func NewDatabase(ctx *Context, name string, args DatabaseArgs, opts ...ResourceOption) (*Database, error)
    public Database(string name, DatabaseArgs args, CustomResourceOptions? opts = null)
    public Database(String name, DatabaseArgs args)
    public Database(String name, DatabaseArgs args, CustomResourceOptions options)
    
    type: turso:Database
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DatabaseArgs
    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 DatabaseArgs
    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 DatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseArgs
    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 databaseResource = new Turso.Database("databaseResource", new()
    {
        Group = "string",
        AllowAttach = false,
        BlockReads = false,
        BlockWrites = false,
        DatabaseId = "string",
        IsSchema = false,
        Name = "string",
        Schema = "string",
        Seed = new Turso.Inputs.DatabaseSeedArgs
        {
            Name = "string",
            Timestamp = "string",
            Type = "string",
            Url = "string",
        },
        SizeLimit = "string",
    });
    
    example, err := turso.NewDatabase(ctx, "databaseResource", &turso.DatabaseArgs{
    Group: pulumi.String("string"),
    AllowAttach: pulumi.Bool(false),
    BlockReads: pulumi.Bool(false),
    BlockWrites: pulumi.Bool(false),
    DatabaseId: pulumi.String("string"),
    IsSchema: pulumi.Bool(false),
    Name: pulumi.String("string"),
    Schema: pulumi.String("string"),
    Seed: &.DatabaseSeedArgs{
    Name: pulumi.String("string"),
    Timestamp: pulumi.String("string"),
    Type: pulumi.String("string"),
    Url: pulumi.String("string"),
    },
    SizeLimit: pulumi.String("string"),
    })
    
    var databaseResource = new Database("databaseResource", DatabaseArgs.builder()
        .group("string")
        .allowAttach(false)
        .blockReads(false)
        .blockWrites(false)
        .databaseId("string")
        .isSchema(false)
        .name("string")
        .schema("string")
        .seed(DatabaseSeedArgs.builder()
            .name("string")
            .timestamp("string")
            .type("string")
            .url("string")
            .build())
        .sizeLimit("string")
        .build());
    
    database_resource = turso.Database("databaseResource",
        group="string",
        allow_attach=False,
        block_reads=False,
        block_writes=False,
        database_id="string",
        is_schema=False,
        name="string",
        schema="string",
        seed={
            "name": "string",
            "timestamp": "string",
            "type": "string",
            "url": "string",
        },
        size_limit="string")
    
    const databaseResource = new turso.Database("databaseResource", {
        group: "string",
        allowAttach: false,
        blockReads: false,
        blockWrites: false,
        databaseId: "string",
        isSchema: false,
        name: "string",
        schema: "string",
        seed: {
            name: "string",
            timestamp: "string",
            type: "string",
            url: "string",
        },
        sizeLimit: "string",
    });
    
    type: turso:Database
    properties:
        allowAttach: false
        blockReads: false
        blockWrites: false
        databaseId: string
        group: string
        isSchema: false
        name: string
        schema: string
        seed:
            name: string
            timestamp: string
            type: string
            url: string
        sizeLimit: string
    

    Database 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 Database resource accepts the following input properties:

    Group string
    The name of the group where the database should be created. The group must already exist.
    AllowAttach bool
    Allow or disallow attaching databases to the current database.
    BlockReads bool
    Block all database reads.
    BlockWrites bool
    Block all database writes.
    DatabaseId string
    The name of the database.
    IsSchema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    Name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    Schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    Seed DatabaseSeed
    SizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    Group string
    The name of the group where the database should be created. The group must already exist.
    AllowAttach bool
    Allow or disallow attaching databases to the current database.
    BlockReads bool
    Block all database reads.
    BlockWrites bool
    Block all database writes.
    DatabaseId string
    The name of the database.
    IsSchema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    Name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    Schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    Seed DatabaseSeedArgs
    SizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    group String
    The name of the group where the database should be created. The group must already exist.
    allowAttach Boolean
    Allow or disallow attaching databases to the current database.
    blockReads Boolean
    Block all database reads.
    blockWrites Boolean
    Block all database writes.
    databaseId String
    The name of the database.
    isSchema Boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name String
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema String
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeed
    sizeLimit String
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    group string
    The name of the group where the database should be created. The group must already exist.
    allowAttach boolean
    Allow or disallow attaching databases to the current database.
    blockReads boolean
    Block all database reads.
    blockWrites boolean
    Block all database writes.
    databaseId string
    The name of the database.
    isSchema boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeed
    sizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    group str
    The name of the group where the database should be created. The group must already exist.
    allow_attach bool
    Allow or disallow attaching databases to the current database.
    block_reads bool
    Block all database reads.
    block_writes bool
    Block all database writes.
    database_id str
    The name of the database.
    is_schema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name str
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema str
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeedArgs
    size_limit str
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    group String
    The name of the group where the database should be created. The group must already exist.
    allowAttach Boolean
    Allow or disallow attaching databases to the current database.
    blockReads Boolean
    Block all database reads.
    blockWrites Boolean
    Block all database writes.
    databaseId String
    The name of the database.
    isSchema Boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name String
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema String
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed Property Map
    sizeLimit String
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Database resource produces the following output properties:

    Database DatabaseDatabase
    Id string
    The provider-assigned unique ID for this managed resource.
    Database DatabaseDatabase
    Id string
    The provider-assigned unique ID for this managed resource.
    database DatabaseDatabase
    id String
    The provider-assigned unique ID for this managed resource.
    database DatabaseDatabase
    id string
    The provider-assigned unique ID for this managed resource.
    database DatabaseDatabase
    id str
    The provider-assigned unique ID for this managed resource.
    database Property Map
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Database Resource

    Get an existing Database 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?: DatabaseState, opts?: CustomResourceOptions): Database
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_attach: Optional[bool] = None,
            block_reads: Optional[bool] = None,
            block_writes: Optional[bool] = None,
            database: Optional[DatabaseDatabaseArgs] = None,
            database_id: Optional[str] = None,
            group: Optional[str] = None,
            is_schema: Optional[bool] = None,
            name: Optional[str] = None,
            schema: Optional[str] = None,
            seed: Optional[DatabaseSeedArgs] = None,
            size_limit: Optional[str] = None) -> Database
    func GetDatabase(ctx *Context, name string, id IDInput, state *DatabaseState, opts ...ResourceOption) (*Database, error)
    public static Database Get(string name, Input<string> id, DatabaseState? state, CustomResourceOptions? opts = null)
    public static Database get(String name, Output<String> id, DatabaseState state, CustomResourceOptions options)
    resources:  _:    type: turso:Database    get:      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.
    The following state arguments are supported:
    AllowAttach bool
    Allow or disallow attaching databases to the current database.
    BlockReads bool
    Block all database reads.
    BlockWrites bool
    Block all database writes.
    Database DatabaseDatabase
    DatabaseId string
    The name of the database.
    Group string
    The name of the group where the database should be created. The group must already exist.
    IsSchema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    Name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    Schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    Seed DatabaseSeed
    SizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    AllowAttach bool
    Allow or disallow attaching databases to the current database.
    BlockReads bool
    Block all database reads.
    BlockWrites bool
    Block all database writes.
    Database DatabaseDatabaseArgs
    DatabaseId string
    The name of the database.
    Group string
    The name of the group where the database should be created. The group must already exist.
    IsSchema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    Name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    Schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    Seed DatabaseSeedArgs
    SizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    allowAttach Boolean
    Allow or disallow attaching databases to the current database.
    blockReads Boolean
    Block all database reads.
    blockWrites Boolean
    Block all database writes.
    database DatabaseDatabase
    databaseId String
    The name of the database.
    group String
    The name of the group where the database should be created. The group must already exist.
    isSchema Boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name String
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema String
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeed
    sizeLimit String
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    allowAttach boolean
    Allow or disallow attaching databases to the current database.
    blockReads boolean
    Block all database reads.
    blockWrites boolean
    Block all database writes.
    database DatabaseDatabase
    databaseId string
    The name of the database.
    group string
    The name of the group where the database should be created. The group must already exist.
    isSchema boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name string
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema string
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeed
    sizeLimit string
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    allow_attach bool
    Allow or disallow attaching databases to the current database.
    block_reads bool
    Block all database reads.
    block_writes bool
    Block all database writes.
    database DatabaseDatabaseArgs
    database_id str
    The name of the database.
    group str
    The name of the group where the database should be created. The group must already exist.
    is_schema bool
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name str
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema str
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed DatabaseSeedArgs
    size_limit str
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.
    allowAttach Boolean
    Allow or disallow attaching databases to the current database.
    blockReads Boolean
    Block all database reads.
    blockWrites Boolean
    Block all database writes.
    database Property Map
    databaseId String
    The name of the database.
    group String
    The name of the group where the database should be created. The group must already exist.
    isSchema Boolean
    Mark this database as the parent schema database that updates child databases with any schema changes. See Multi-DB Schemas.
    name String
    The name of the new database. Must contain only lowercase letters, numbers, dashes. No longer than 64 characters.
    schema String
    The name of the parent database to use as the schema. See Multi-DB Schemas.
    seed Property Map
    sizeLimit String
    The maximum size of the database in bytes. Values with units are also accepted, e.g. 1mb, 256mb, 1gb.

    Supporting Types

    DatabaseDatabase, DatabaseDatabaseArgs

    AllowAttach bool
    The current status for allowing the database to be attached to another.
    Archived bool
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    BlockReads bool
    The current status for blocked reads.
    BlockWrites bool
    The current status for blocked writes.
    DbId string
    The database universal unique identifier (UUID).
    Group string
    The name of the group the database belongs to.
    Hostname string
    The DNS hostname used for client libSQL and HTTP connections.
    IsSchema bool
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    Name string
    The database name, unique across your organization.
    PrimaryRegion string
    The primary region location code the group the database belongs to.
    Regions List<string>
    A list of regions for the group the database belongs to.
    Schema string
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    Type string
    The string representing the object type.
    Version string
    The current libSQL version the database is running.
    AllowAttach bool
    The current status for allowing the database to be attached to another.
    Archived bool
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    BlockReads bool
    The current status for blocked reads.
    BlockWrites bool
    The current status for blocked writes.
    DbId string
    The database universal unique identifier (UUID).
    Group string
    The name of the group the database belongs to.
    Hostname string
    The DNS hostname used for client libSQL and HTTP connections.
    IsSchema bool
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    Name string
    The database name, unique across your organization.
    PrimaryRegion string
    The primary region location code the group the database belongs to.
    Regions []string
    A list of regions for the group the database belongs to.
    Schema string
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    Type string
    The string representing the object type.
    Version string
    The current libSQL version the database is running.
    allowAttach Boolean
    The current status for allowing the database to be attached to another.
    archived Boolean
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    blockReads Boolean
    The current status for blocked reads.
    blockWrites Boolean
    The current status for blocked writes.
    dbId String
    The database universal unique identifier (UUID).
    group String
    The name of the group the database belongs to.
    hostname String
    The DNS hostname used for client libSQL and HTTP connections.
    isSchema Boolean
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    name String
    The database name, unique across your organization.
    primaryRegion String
    The primary region location code the group the database belongs to.
    regions List<String>
    A list of regions for the group the database belongs to.
    schema String
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    type String
    The string representing the object type.
    version String
    The current libSQL version the database is running.
    allowAttach boolean
    The current status for allowing the database to be attached to another.
    archived boolean
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    blockReads boolean
    The current status for blocked reads.
    blockWrites boolean
    The current status for blocked writes.
    dbId string
    The database universal unique identifier (UUID).
    group string
    The name of the group the database belongs to.
    hostname string
    The DNS hostname used for client libSQL and HTTP connections.
    isSchema boolean
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    name string
    The database name, unique across your organization.
    primaryRegion string
    The primary region location code the group the database belongs to.
    regions string[]
    A list of regions for the group the database belongs to.
    schema string
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    type string
    The string representing the object type.
    version string
    The current libSQL version the database is running.
    allow_attach bool
    The current status for allowing the database to be attached to another.
    archived bool
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    block_reads bool
    The current status for blocked reads.
    block_writes bool
    The current status for blocked writes.
    db_id str
    The database universal unique identifier (UUID).
    group str
    The name of the group the database belongs to.
    hostname str
    The DNS hostname used for client libSQL and HTTP connections.
    is_schema bool
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    name str
    The database name, unique across your organization.
    primary_region str
    The primary region location code the group the database belongs to.
    regions Sequence[str]
    A list of regions for the group the database belongs to.
    schema str
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    type str
    The string representing the object type.
    version str
    The current libSQL version the database is running.
    allowAttach Boolean
    The current status for allowing the database to be attached to another.
    archived Boolean
    The current status of the database. If true, the database is archived and requires a manual unarchive step.
    blockReads Boolean
    The current status for blocked reads.
    blockWrites Boolean
    The current status for blocked writes.
    dbId String
    The database universal unique identifier (UUID).
    group String
    The name of the group the database belongs to.
    hostname String
    The DNS hostname used for client libSQL and HTTP connections.
    isSchema Boolean
    If this database controls other child databases then this will be true. See Multi-DB Schemas.
    name String
    The database name, unique across your organization.
    primaryRegion String
    The primary region location code the group the database belongs to.
    regions List<String>
    A list of regions for the group the database belongs to.
    schema String
    The name of the parent database that owns the schema for this database. See Multi-DB Schemas.
    type String
    The string representing the object type.
    version String
    The current libSQL version the database is running.

    DatabaseSeed, DatabaseSeedArgs

    Name string
    The name of the existing database when database is used as a seed type.
    Timestamp string
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    Type string
    The type of seed to be used to create a new database.
    Url string
    The URL returned by upload dump can be used with the dump seed type.
    Name string
    The name of the existing database when database is used as a seed type.
    Timestamp string
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    Type string
    The type of seed to be used to create a new database.
    Url string
    The URL returned by upload dump can be used with the dump seed type.
    name String
    The name of the existing database when database is used as a seed type.
    timestamp String
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    type String
    The type of seed to be used to create a new database.
    url String
    The URL returned by upload dump can be used with the dump seed type.
    name string
    The name of the existing database when database is used as a seed type.
    timestamp string
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    type string
    The type of seed to be used to create a new database.
    url string
    The URL returned by upload dump can be used with the dump seed type.
    name str
    The name of the existing database when database is used as a seed type.
    timestamp str
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    type str
    The type of seed to be used to create a new database.
    url str
    The URL returned by upload dump can be used with the dump seed type.
    name String
    The name of the existing database when database is used as a seed type.
    timestamp String
    A formatted ISO 8601 recovery point to create a database from. This must be within the last 24 hours, or 30 days on the scaler plan.
    type String
    The type of seed to be used to create a new database.
    url String
    The URL returned by upload dump can be used with the dump seed type.

    Import

    $ pulumi import turso:index/database:Database example_database database_name
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    turso celest-dev/terraform-provider-turso
    License
    Notes
    This Pulumi package is based on the turso Terraform Provider.
    turso logo
    turso 0.2.3 published on Friday, Mar 7, 2025 by celest-dev