1. Packages
  2. Packages
  3. Linode Provider
  4. API Docs
  5. DatabaseMongodb
Viewing docs for Linode v3.12.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
linode logo
Viewing docs for Linode v3.12.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Provides a Linode Mongo Database resource. This can be used to create, modify, and delete Linode MongoDB Databases. For more information, see the Linode APIv4 docs.

    Please keep in mind that Managed Databases can take up to an hour to provision.

    updates

    The following arguments are supported in the updates specification block:

    • day_of_week - (Required) The day to perform maintenance. (monday, tuesday, …)

    • duration - (Required) The maximum maintenance window time in hours. (1..3)

    • frequency - (Required) Whether maintenance occurs on a weekly or monthly basis. (weekly, monthly)

    • hour_of_day - (Required) The hour to begin maintenance based in UTC time. (0..23)

    • week_of_month - (Optional) The week of the month to perform monthly frequency updates. Required for monthly frequency updates. (1..4)

    Example Usage

    Creating a simple MongoDB database instance

    using System.Collections.Generic;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var foobar = new Linode.DatabaseMongodb("foobar", new()
        {
            EngineId = "mongodb/4.4.10",
            Label = "mydatabase",
            Region = "us-southeast",
            Type = "g6-nanode-1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v3/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.NewDatabaseMongodb(ctx, "foobar", &linode.DatabaseMongodbArgs{
    			EngineId: pulumi.String("mongodb/4.4.10"),
    			Label:    pulumi.String("mydatabase"),
    			Region:   pulumi.String("us-southeast"),
    			Type:     pulumi.String("g6-nanode-1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.DatabaseMongodb;
    import com.pulumi.linode.DatabaseMongodbArgs;
    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 foobar = new DatabaseMongodb("foobar", DatabaseMongodbArgs.builder()        
                .engineId("mongodb/4.4.10")
                .label("mydatabase")
                .region("us-southeast")
                .type("g6-nanode-1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const foobar = new linode.DatabaseMongodb("foobar", {
        engineId: "mongodb/4.4.10",
        label: "mydatabase",
        region: "us-southeast",
        type: "g6-nanode-1",
    });
    
    import pulumi
    import pulumi_linode as linode
    
    foobar = linode.DatabaseMongodb("foobar",
        engine_id="mongodb/4.4.10",
        label="mydatabase",
        region="us-southeast",
        type="g6-nanode-1")
    
    resources:
      foobar:
        type: linode:DatabaseMongodb
        properties:
          engineId: mongodb/4.4.10
          label: mydatabase
          region: us-southeast
          type: g6-nanode-1
    

    Creating a complex MongoDB database instance

    using System.Collections.Generic;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var foobar = new Linode.DatabaseMongodb("foobar", new()
        {
            AllowLists = new[]
            {
                "0.0.0.0/0",
            },
            ClusterSize = 3,
            CompressionType = "zlib",
            Encrypted = true,
            EngineId = "mongodb/4.4.10",
            Label = "mydatabase",
            Region = "us-southeast",
            SslConnection = true,
            StorageEngine = "wiredtiger",
            Type = "g6-nanode-1",
            Updates = new Linode.Inputs.DatabaseMongodbUpdatesArgs
            {
                DayOfWeek = "saturday",
                Duration = 1,
                Frequency = "monthly",
                HourOfDay = 22,
                WeekOfMonth = 2,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v3/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.NewDatabaseMongodb(ctx, "foobar", &linode.DatabaseMongodbArgs{
    			AllowLists: pulumi.StringArray{
    				pulumi.String("0.0.0.0/0"),
    			},
    			ClusterSize:     pulumi.Int(3),
    			CompressionType: pulumi.String("zlib"),
    			Encrypted:       pulumi.Bool(true),
    			EngineId:        pulumi.String("mongodb/4.4.10"),
    			Label:           pulumi.String("mydatabase"),
    			Region:          pulumi.String("us-southeast"),
    			SslConnection:   pulumi.Bool(true),
    			StorageEngine:   pulumi.String("wiredtiger"),
    			Type:            pulumi.String("g6-nanode-1"),
    			Updates: &linode.DatabaseMongodbUpdatesArgs{
    				DayOfWeek:   pulumi.String("saturday"),
    				Duration:    pulumi.Int(1),
    				Frequency:   pulumi.String("monthly"),
    				HourOfDay:   pulumi.Int(22),
    				WeekOfMonth: pulumi.Int(2),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.DatabaseMongodb;
    import com.pulumi.linode.DatabaseMongodbArgs;
    import com.pulumi.linode.inputs.DatabaseMongodbUpdatesArgs;
    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 foobar = new DatabaseMongodb("foobar", DatabaseMongodbArgs.builder()        
                .allowLists("0.0.0.0/0")
                .clusterSize(3)
                .compressionType("zlib")
                .encrypted(true)
                .engineId("mongodb/4.4.10")
                .label("mydatabase")
                .region("us-southeast")
                .sslConnection(true)
                .storageEngine("wiredtiger")
                .type("g6-nanode-1")
                .updates(DatabaseMongodbUpdatesArgs.builder()
                    .dayOfWeek("saturday")
                    .duration(1)
                    .frequency("monthly")
                    .hourOfDay(22)
                    .weekOfMonth(2)
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const foobar = new linode.DatabaseMongodb("foobar", {
        allowLists: ["0.0.0.0/0"],
        clusterSize: 3,
        compressionType: "zlib",
        encrypted: true,
        engineId: "mongodb/4.4.10",
        label: "mydatabase",
        region: "us-southeast",
        sslConnection: true,
        storageEngine: "wiredtiger",
        type: "g6-nanode-1",
        updates: {
            dayOfWeek: "saturday",
            duration: 1,
            frequency: "monthly",
            hourOfDay: 22,
            weekOfMonth: 2,
        },
    });
    
    import pulumi
    import pulumi_linode as linode
    
    foobar = linode.DatabaseMongodb("foobar",
        allow_lists=["0.0.0.0/0"],
        cluster_size=3,
        compression_type="zlib",
        encrypted=True,
        engine_id="mongodb/4.4.10",
        label="mydatabase",
        region="us-southeast",
        ssl_connection=True,
        storage_engine="wiredtiger",
        type="g6-nanode-1",
        updates=linode.DatabaseMongodbUpdatesArgs(
            day_of_week="saturday",
            duration=1,
            frequency="monthly",
            hour_of_day=22,
            week_of_month=2,
        ))
    
    resources:
      foobar:
        type: linode:DatabaseMongodb
        properties:
          allowLists:
            - 0.0.0.0/0
          clusterSize: 3
          compressionType: zlib
          encrypted: true
          engineId: mongodb/4.4.10
          label: mydatabase
          region: us-southeast
          sslConnection: true
          storageEngine: wiredtiger
          type: g6-nanode-1
          updates:
            dayOfWeek: saturday
            duration: 1
            frequency: monthly
            hourOfDay: 22
            weekOfMonth: 2
    

    Create DatabaseMongodb Resource

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

    Constructor syntax

    new DatabaseMongodb(name: string, args: DatabaseMongodbArgs, opts?: CustomResourceOptions);
    @overload
    def DatabaseMongodb(resource_name: str,
                        args: DatabaseMongodbArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def DatabaseMongodb(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        engine_id: Optional[str] = None,
                        label: Optional[str] = None,
                        region: Optional[str] = None,
                        type: Optional[str] = None,
                        allow_lists: Optional[Sequence[str]] = None,
                        cluster_size: Optional[int] = None,
                        compression_type: Optional[str] = None,
                        encrypted: Optional[bool] = None,
                        ssl_connection: Optional[bool] = None,
                        storage_engine: Optional[str] = None,
                        updates: Optional[DatabaseMongodbUpdatesArgs] = None)
    func NewDatabaseMongodb(ctx *Context, name string, args DatabaseMongodbArgs, opts ...ResourceOption) (*DatabaseMongodb, error)
    public DatabaseMongodb(string name, DatabaseMongodbArgs args, CustomResourceOptions? opts = null)
    public DatabaseMongodb(String name, DatabaseMongodbArgs args)
    public DatabaseMongodb(String name, DatabaseMongodbArgs args, CustomResourceOptions options)
    
    type: linode:DatabaseMongodb
    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 DatabaseMongodbArgs
    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 DatabaseMongodbArgs
    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 DatabaseMongodbArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseMongodbArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseMongodbArgs
    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 databaseMongodbResource = new Linode.DatabaseMongodb("databaseMongodbResource", new()
    {
        EngineId = "string",
        Label = "string",
        Region = "string",
        Type = "string",
        AllowLists = new[]
        {
            "string",
        },
        ClusterSize = 0,
        CompressionType = "string",
        Encrypted = false,
        SslConnection = false,
        StorageEngine = "string",
        Updates = new Linode.Inputs.DatabaseMongodbUpdatesArgs
        {
            DayOfWeek = "string",
            Duration = 0,
            Frequency = "string",
            HourOfDay = 0,
            WeekOfMonth = 0,
        },
    });
    
    example, err := linode.NewDatabaseMongodb(ctx, "databaseMongodbResource", &linode.DatabaseMongodbArgs{
    	EngineId: pulumi.String("string"),
    	Label:    pulumi.String("string"),
    	Region:   pulumi.String("string"),
    	Type:     pulumi.String("string"),
    	AllowLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ClusterSize:     pulumi.Int(0),
    	CompressionType: pulumi.String("string"),
    	Encrypted:       pulumi.Bool(false),
    	SslConnection:   pulumi.Bool(false),
    	StorageEngine:   pulumi.String("string"),
    	Updates: &linode.DatabaseMongodbUpdatesArgs{
    		DayOfWeek:   pulumi.String("string"),
    		Duration:    pulumi.Int(0),
    		Frequency:   pulumi.String("string"),
    		HourOfDay:   pulumi.Int(0),
    		WeekOfMonth: pulumi.Int(0),
    	},
    })
    
    var databaseMongodbResource = new DatabaseMongodb("databaseMongodbResource", DatabaseMongodbArgs.builder()
        .engineId("string")
        .label("string")
        .region("string")
        .type("string")
        .allowLists("string")
        .clusterSize(0)
        .compressionType("string")
        .encrypted(false)
        .sslConnection(false)
        .storageEngine("string")
        .updates(DatabaseMongodbUpdatesArgs.builder()
            .dayOfWeek("string")
            .duration(0)
            .frequency("string")
            .hourOfDay(0)
            .weekOfMonth(0)
            .build())
        .build());
    
    database_mongodb_resource = linode.DatabaseMongodb("databaseMongodbResource",
        engine_id="string",
        label="string",
        region="string",
        type="string",
        allow_lists=["string"],
        cluster_size=0,
        compression_type="string",
        encrypted=False,
        ssl_connection=False,
        storage_engine="string",
        updates={
            "day_of_week": "string",
            "duration": 0,
            "frequency": "string",
            "hour_of_day": 0,
            "week_of_month": 0,
        })
    
    const databaseMongodbResource = new linode.DatabaseMongodb("databaseMongodbResource", {
        engineId: "string",
        label: "string",
        region: "string",
        type: "string",
        allowLists: ["string"],
        clusterSize: 0,
        compressionType: "string",
        encrypted: false,
        sslConnection: false,
        storageEngine: "string",
        updates: {
            dayOfWeek: "string",
            duration: 0,
            frequency: "string",
            hourOfDay: 0,
            weekOfMonth: 0,
        },
    });
    
    type: linode:DatabaseMongodb
    properties:
        allowLists:
            - string
        clusterSize: 0
        compressionType: string
        encrypted: false
        engineId: string
        label: string
        region: string
        sslConnection: false
        storageEngine: string
        type: string
        updates:
            dayOfWeek: string
            duration: 0
            frequency: string
            hourOfDay: 0
            weekOfMonth: 0
    

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

    EngineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    Label string
    A unique, user-defined string referring to the Managed Database.
    Region string
    The region to use for the Managed Database.
    Type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    AllowLists List<string>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    ClusterSize int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    CompressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    Encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    SslConnection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    StorageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    Updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    EngineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    Label string
    A unique, user-defined string referring to the Managed Database.
    Region string
    The region to use for the Managed Database.
    Type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    AllowLists []string
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    ClusterSize int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    CompressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    Encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    SslConnection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    StorageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    Updates DatabaseMongodbUpdatesArgs
    Configuration settings for automated patch update maintenance for the Managed Database.
    engineId String
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    label String
    A unique, user-defined string referring to the Managed Database.
    region String
    The region to use for the Managed Database.
    type String
    The Linode Instance type used for the nodes of the Managed Database instance.
    allowLists List<String>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    clusterSize Integer
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType String
    The type of data compression for this Database. (none, snappy, zlib; default none)
    encrypted Boolean
    Whether the Managed Databases is encrypted. (default false)
    sslConnection Boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    storageEngine String
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    engineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    label string
    A unique, user-defined string referring to the Managed Database.
    region string
    The region to use for the Managed Database.
    type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    allowLists string[]
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    clusterSize number
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    encrypted boolean
    Whether the Managed Databases is encrypted. (default false)
    sslConnection boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    storageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    engine_id str
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    label str
    A unique, user-defined string referring to the Managed Database.
    region str
    The region to use for the Managed Database.
    type str
    The Linode Instance type used for the nodes of the Managed Database instance.
    allow_lists Sequence[str]
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    cluster_size int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compression_type str
    The type of data compression for this Database. (none, snappy, zlib; default none)
    encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    ssl_connection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    storage_engine str
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    updates DatabaseMongodbUpdatesArgs
    Configuration settings for automated patch update maintenance for the Managed Database.
    engineId String
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    label String
    A unique, user-defined string referring to the Managed Database.
    region String
    The region to use for the Managed Database.
    type String
    The Linode Instance type used for the nodes of the Managed Database instance.
    allowLists List<String>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    clusterSize Number
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType String
    The type of data compression for this Database. (none, snappy, zlib; default none)
    encrypted Boolean
    Whether the Managed Databases is encrypted. (default false)
    sslConnection Boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    storageEngine String
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    updates Property Map
    Configuration settings for automated patch update maintenance for the Managed Database.

    Outputs

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

    CaCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    Created string
    When this Managed Database was created.
    Engine string
    The Managed Database engine. (e.g. mongodb)
    HostPrimary string
    The primary host for the Managed Database.
    HostSecondary string
    The secondary/private network host for the Managed Database.
    Id string
    The provider-assigned unique ID for this managed resource.
    Peers List<string>
    A set of peer addresses for this Database.
    Port int
    The access port for this Managed Database.
    ReplicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    RootPassword string
    The randomly-generated root password for the Managed Database instance.
    RootUsername string
    The root username for the Managed Database instance.
    Status string
    The operating status of the Managed Database.
    Updated string
    When this Managed Database was last updated.
    Version string
    The Managed Database engine version. (e.g. v8.0.26)
    CaCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    Created string
    When this Managed Database was created.
    Engine string
    The Managed Database engine. (e.g. mongodb)
    HostPrimary string
    The primary host for the Managed Database.
    HostSecondary string
    The secondary/private network host for the Managed Database.
    Id string
    The provider-assigned unique ID for this managed resource.
    Peers []string
    A set of peer addresses for this Database.
    Port int
    The access port for this Managed Database.
    ReplicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    RootPassword string
    The randomly-generated root password for the Managed Database instance.
    RootUsername string
    The root username for the Managed Database instance.
    Status string
    The operating status of the Managed Database.
    Updated string
    When this Managed Database was last updated.
    Version string
    The Managed Database engine version. (e.g. v8.0.26)
    caCert String
    The base64-encoded SSL CA certificate for the Managed Database instance.
    created String
    When this Managed Database was created.
    engine String
    The Managed Database engine. (e.g. mongodb)
    hostPrimary String
    The primary host for the Managed Database.
    hostSecondary String
    The secondary/private network host for the Managed Database.
    id String
    The provider-assigned unique ID for this managed resource.
    peers List<String>
    A set of peer addresses for this Database.
    port Integer
    The access port for this Managed Database.
    replicaSet String
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword String
    The randomly-generated root password for the Managed Database instance.
    rootUsername String
    The root username for the Managed Database instance.
    status String
    The operating status of the Managed Database.
    updated String
    When this Managed Database was last updated.
    version String
    The Managed Database engine version. (e.g. v8.0.26)
    caCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    created string
    When this Managed Database was created.
    engine string
    The Managed Database engine. (e.g. mongodb)
    hostPrimary string
    The primary host for the Managed Database.
    hostSecondary string
    The secondary/private network host for the Managed Database.
    id string
    The provider-assigned unique ID for this managed resource.
    peers string[]
    A set of peer addresses for this Database.
    port number
    The access port for this Managed Database.
    replicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword string
    The randomly-generated root password for the Managed Database instance.
    rootUsername string
    The root username for the Managed Database instance.
    status string
    The operating status of the Managed Database.
    updated string
    When this Managed Database was last updated.
    version string
    The Managed Database engine version. (e.g. v8.0.26)
    ca_cert str
    The base64-encoded SSL CA certificate for the Managed Database instance.
    created str
    When this Managed Database was created.
    engine str
    The Managed Database engine. (e.g. mongodb)
    host_primary str
    The primary host for the Managed Database.
    host_secondary str
    The secondary/private network host for the Managed Database.
    id str
    The provider-assigned unique ID for this managed resource.
    peers Sequence[str]
    A set of peer addresses for this Database.
    port int
    The access port for this Managed Database.
    replica_set str
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    root_password str
    The randomly-generated root password for the Managed Database instance.
    root_username str
    The root username for the Managed Database instance.
    status str
    The operating status of the Managed Database.
    updated str
    When this Managed Database was last updated.
    version str
    The Managed Database engine version. (e.g. v8.0.26)
    caCert String
    The base64-encoded SSL CA certificate for the Managed Database instance.
    created String
    When this Managed Database was created.
    engine String
    The Managed Database engine. (e.g. mongodb)
    hostPrimary String
    The primary host for the Managed Database.
    hostSecondary String
    The secondary/private network host for the Managed Database.
    id String
    The provider-assigned unique ID for this managed resource.
    peers List<String>
    A set of peer addresses for this Database.
    port Number
    The access port for this Managed Database.
    replicaSet String
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword String
    The randomly-generated root password for the Managed Database instance.
    rootUsername String
    The root username for the Managed Database instance.
    status String
    The operating status of the Managed Database.
    updated String
    When this Managed Database was last updated.
    version String
    The Managed Database engine version. (e.g. v8.0.26)

    Look up Existing DatabaseMongodb Resource

    Get an existing DatabaseMongodb 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?: DatabaseMongodbState, opts?: CustomResourceOptions): DatabaseMongodb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_lists: Optional[Sequence[str]] = None,
            ca_cert: Optional[str] = None,
            cluster_size: Optional[int] = None,
            compression_type: Optional[str] = None,
            created: Optional[str] = None,
            encrypted: Optional[bool] = None,
            engine: Optional[str] = None,
            engine_id: Optional[str] = None,
            host_primary: Optional[str] = None,
            host_secondary: Optional[str] = None,
            label: Optional[str] = None,
            peers: Optional[Sequence[str]] = None,
            port: Optional[int] = None,
            region: Optional[str] = None,
            replica_set: Optional[str] = None,
            root_password: Optional[str] = None,
            root_username: Optional[str] = None,
            ssl_connection: Optional[bool] = None,
            status: Optional[str] = None,
            storage_engine: Optional[str] = None,
            type: Optional[str] = None,
            updated: Optional[str] = None,
            updates: Optional[DatabaseMongodbUpdatesArgs] = None,
            version: Optional[str] = None) -> DatabaseMongodb
    func GetDatabaseMongodb(ctx *Context, name string, id IDInput, state *DatabaseMongodbState, opts ...ResourceOption) (*DatabaseMongodb, error)
    public static DatabaseMongodb Get(string name, Input<string> id, DatabaseMongodbState? state, CustomResourceOptions? opts = null)
    public static DatabaseMongodb get(String name, Output<String> id, DatabaseMongodbState state, CustomResourceOptions options)
    resources:  _:    type: linode:DatabaseMongodb    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:
    AllowLists List<string>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    CaCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    ClusterSize int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    CompressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    Created string
    When this Managed Database was created.
    Encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    Engine string
    The Managed Database engine. (e.g. mongodb)
    EngineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    HostPrimary string
    The primary host for the Managed Database.
    HostSecondary string
    The secondary/private network host for the Managed Database.
    Label string
    A unique, user-defined string referring to the Managed Database.
    Peers List<string>
    A set of peer addresses for this Database.
    Port int
    The access port for this Managed Database.
    Region string
    The region to use for the Managed Database.
    ReplicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    RootPassword string
    The randomly-generated root password for the Managed Database instance.
    RootUsername string
    The root username for the Managed Database instance.
    SslConnection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    Status string
    The operating status of the Managed Database.
    StorageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    Type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    Updated string
    When this Managed Database was last updated.
    Updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    Version string
    The Managed Database engine version. (e.g. v8.0.26)
    AllowLists []string
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    CaCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    ClusterSize int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    CompressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    Created string
    When this Managed Database was created.
    Encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    Engine string
    The Managed Database engine. (e.g. mongodb)
    EngineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    HostPrimary string
    The primary host for the Managed Database.
    HostSecondary string
    The secondary/private network host for the Managed Database.
    Label string
    A unique, user-defined string referring to the Managed Database.
    Peers []string
    A set of peer addresses for this Database.
    Port int
    The access port for this Managed Database.
    Region string
    The region to use for the Managed Database.
    ReplicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    RootPassword string
    The randomly-generated root password for the Managed Database instance.
    RootUsername string
    The root username for the Managed Database instance.
    SslConnection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    Status string
    The operating status of the Managed Database.
    StorageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    Type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    Updated string
    When this Managed Database was last updated.
    Updates DatabaseMongodbUpdatesArgs
    Configuration settings for automated patch update maintenance for the Managed Database.
    Version string
    The Managed Database engine version. (e.g. v8.0.26)
    allowLists List<String>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    caCert String
    The base64-encoded SSL CA certificate for the Managed Database instance.
    clusterSize Integer
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType String
    The type of data compression for this Database. (none, snappy, zlib; default none)
    created String
    When this Managed Database was created.
    encrypted Boolean
    Whether the Managed Databases is encrypted. (default false)
    engine String
    The Managed Database engine. (e.g. mongodb)
    engineId String
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    hostPrimary String
    The primary host for the Managed Database.
    hostSecondary String
    The secondary/private network host for the Managed Database.
    label String
    A unique, user-defined string referring to the Managed Database.
    peers List<String>
    A set of peer addresses for this Database.
    port Integer
    The access port for this Managed Database.
    region String
    The region to use for the Managed Database.
    replicaSet String
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword String
    The randomly-generated root password for the Managed Database instance.
    rootUsername String
    The root username for the Managed Database instance.
    sslConnection Boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    status String
    The operating status of the Managed Database.
    storageEngine String
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    type String
    The Linode Instance type used for the nodes of the Managed Database instance.
    updated String
    When this Managed Database was last updated.
    updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    version String
    The Managed Database engine version. (e.g. v8.0.26)
    allowLists string[]
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    caCert string
    The base64-encoded SSL CA certificate for the Managed Database instance.
    clusterSize number
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType string
    The type of data compression for this Database. (none, snappy, zlib; default none)
    created string
    When this Managed Database was created.
    encrypted boolean
    Whether the Managed Databases is encrypted. (default false)
    engine string
    The Managed Database engine. (e.g. mongodb)
    engineId string
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    hostPrimary string
    The primary host for the Managed Database.
    hostSecondary string
    The secondary/private network host for the Managed Database.
    label string
    A unique, user-defined string referring to the Managed Database.
    peers string[]
    A set of peer addresses for this Database.
    port number
    The access port for this Managed Database.
    region string
    The region to use for the Managed Database.
    replicaSet string
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword string
    The randomly-generated root password for the Managed Database instance.
    rootUsername string
    The root username for the Managed Database instance.
    sslConnection boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    status string
    The operating status of the Managed Database.
    storageEngine string
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    type string
    The Linode Instance type used for the nodes of the Managed Database instance.
    updated string
    When this Managed Database was last updated.
    updates DatabaseMongodbUpdates
    Configuration settings for automated patch update maintenance for the Managed Database.
    version string
    The Managed Database engine version. (e.g. v8.0.26)
    allow_lists Sequence[str]
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    ca_cert str
    The base64-encoded SSL CA certificate for the Managed Database instance.
    cluster_size int
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compression_type str
    The type of data compression for this Database. (none, snappy, zlib; default none)
    created str
    When this Managed Database was created.
    encrypted bool
    Whether the Managed Databases is encrypted. (default false)
    engine str
    The Managed Database engine. (e.g. mongodb)
    engine_id str
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    host_primary str
    The primary host for the Managed Database.
    host_secondary str
    The secondary/private network host for the Managed Database.
    label str
    A unique, user-defined string referring to the Managed Database.
    peers Sequence[str]
    A set of peer addresses for this Database.
    port int
    The access port for this Managed Database.
    region str
    The region to use for the Managed Database.
    replica_set str
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    root_password str
    The randomly-generated root password for the Managed Database instance.
    root_username str
    The root username for the Managed Database instance.
    ssl_connection bool
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    status str
    The operating status of the Managed Database.
    storage_engine str
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    type str
    The Linode Instance type used for the nodes of the Managed Database instance.
    updated str
    When this Managed Database was last updated.
    updates DatabaseMongodbUpdatesArgs
    Configuration settings for automated patch update maintenance for the Managed Database.
    version str
    The Managed Database engine version. (e.g. v8.0.26)
    allowLists List<String>
    A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use linode.DatabaseAccessControls to manage your allow list separately.
    caCert String
    The base64-encoded SSL CA certificate for the Managed Database instance.
    clusterSize Number
    The number of Linode Instance nodes deployed to the Managed Database. (default 1)
    compressionType String
    The type of data compression for this Database. (none, snappy, zlib; default none)
    created String
    When this Managed Database was created.
    encrypted Boolean
    Whether the Managed Databases is encrypted. (default false)
    engine String
    The Managed Database engine. (e.g. mongodb)
    engineId String
    The Managed Database engine in engine/version format. (e.g. mongo/4.4.10)
    hostPrimary String
    The primary host for the Managed Database.
    hostSecondary String
    The secondary/private network host for the Managed Database.
    label String
    A unique, user-defined string referring to the Managed Database.
    peers List<String>
    A set of peer addresses for this Database.
    port Number
    The access port for this Managed Database.
    region String
    The region to use for the Managed Database.
    replicaSet String
    Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
    rootPassword String
    The randomly-generated root password for the Managed Database instance.
    rootUsername String
    The root username for the Managed Database instance.
    sslConnection Boolean
    Whether to require SSL credentials to establish a connection to the Managed Database. (default false)
    status String
    The operating status of the Managed Database.
    storageEngine String
    The type of storage engine for this Database. (mmapv1, wiredtiger; default wiredtiger)
    type String
    The Linode Instance type used for the nodes of the Managed Database instance.
    updated String
    When this Managed Database was last updated.
    updates Property Map
    Configuration settings for automated patch update maintenance for the Managed Database.
    version String
    The Managed Database engine version. (e.g. v8.0.26)

    Supporting Types

    DatabaseMongodbUpdates, DatabaseMongodbUpdatesArgs

    dayOfWeek String
    duration Integer
    frequency String
    hourOfDay Integer
    weekOfMonth Integer
    dayOfWeek string
    duration number
    frequency string
    hourOfDay number
    weekOfMonth number
    dayOfWeek String
    duration Number
    frequency String
    hourOfDay Number
    weekOfMonth Number

    Import

    Linode MongoDB Databases can be imported using the id, e.g.

     $ pulumi import linode:index/databaseMongodb:DatabaseMongodb foobar 1234567
    

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

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Viewing docs for Linode v3.12.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.