1. Packages
  2. Scaleway
  3. API Docs
  4. DatabaseUser
Scaleway v1.10.0 published on Saturday, Jul 1, 2023 by lbrlabs

scaleway.DatabaseUser

Explore with Pulumi AI

scaleway logo
Scaleway v1.10.0 published on Saturday, Jul 1, 2023 by lbrlabs

    Creates and manages Scaleway Database Users. For more information, see the documentation.

    Examples

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as random from "@pulumi/random";
    import * as scaleway from "@lbrlabs/pulumi-scaleway";
    
    const dbPassword = new random.RandomPassword("dbPassword", {
        length: 16,
        special: true,
    });
    const dbAdmin = new scaleway.DatabaseUser("dbAdmin", {
        instanceId: scaleway_rdb_instance.main.id,
        password: dbPassword.result,
        isAdmin: true,
    });
    
    import pulumi
    import lbrlabs_pulumi_scaleway as scaleway
    import pulumi_random as random
    
    db_password = random.RandomPassword("dbPassword",
        length=16,
        special=True)
    db_admin = scaleway.DatabaseUser("dbAdmin",
        instance_id=scaleway_rdb_instance["main"]["id"],
        password=db_password.result,
        is_admin=True)
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Random = Pulumi.Random;
    using Scaleway = Lbrlabs.PulumiPackage.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var dbPassword = new Random.RandomPassword("dbPassword", new()
        {
            Length = 16,
            Special = true,
        });
    
        var dbAdmin = new Scaleway.DatabaseUser("dbAdmin", new()
        {
            InstanceId = scaleway_rdb_instance.Main.Id,
            Password = dbPassword.Result,
            IsAdmin = true,
        });
    
    });
    
    package main
    
    import (
    	"github.com/lbrlabs/pulumi-scaleway/sdk/go/scaleway"
    	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		dbPassword, err := random.NewRandomPassword(ctx, "dbPassword", &random.RandomPasswordArgs{
    			Length:  pulumi.Int(16),
    			Special: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewDatabaseUser(ctx, "dbAdmin", &scaleway.DatabaseUserArgs{
    			InstanceId: pulumi.Any(scaleway_rdb_instance.Main.Id),
    			Password:   dbPassword.Result,
    			IsAdmin:    pulumi.Bool(true),
    		})
    		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.random.RandomPassword;
    import com.pulumi.random.RandomPasswordArgs;
    import com.pulumi.scaleway.DatabaseUser;
    import com.pulumi.scaleway.DatabaseUserArgs;
    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 dbPassword = new RandomPassword("dbPassword", RandomPasswordArgs.builder()        
                .length(16)
                .special(true)
                .build());
    
            var dbAdmin = new DatabaseUser("dbAdmin", DatabaseUserArgs.builder()        
                .instanceId(scaleway_rdb_instance.main().id())
                .password(dbPassword.result())
                .isAdmin(true)
                .build());
    
        }
    }
    
    resources:
      dbPassword:
        type: random:RandomPassword
        properties:
          length: 16
          special: true
      dbAdmin:
        type: scaleway:DatabaseUser
        properties:
          instanceId: ${scaleway_rdb_instance.main.id}
          password: ${dbPassword.result}
          isAdmin: true
    

    Create DatabaseUser Resource

    new DatabaseUser(name: string, args: DatabaseUserArgs, opts?: CustomResourceOptions);
    @overload
    def DatabaseUser(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     instance_id: Optional[str] = None,
                     is_admin: Optional[bool] = None,
                     name: Optional[str] = None,
                     password: Optional[str] = None,
                     region: Optional[str] = None)
    @overload
    def DatabaseUser(resource_name: str,
                     args: DatabaseUserArgs,
                     opts: Optional[ResourceOptions] = None)
    func NewDatabaseUser(ctx *Context, name string, args DatabaseUserArgs, opts ...ResourceOption) (*DatabaseUser, error)
    public DatabaseUser(string name, DatabaseUserArgs args, CustomResourceOptions? opts = null)
    public DatabaseUser(String name, DatabaseUserArgs args)
    public DatabaseUser(String name, DatabaseUserArgs args, CustomResourceOptions options)
    
    type: scaleway:DatabaseUser
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DatabaseUserArgs
    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 DatabaseUserArgs
    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 DatabaseUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatabaseUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatabaseUserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DatabaseUser Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DatabaseUser resource accepts the following input properties:

    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    Password string

    Database User password.

    IsAdmin bool

    Grant admin permissions to the Database User.

    Name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    Region string

    The Scaleway region this resource resides in.

    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    Password string

    Database User password.

    IsAdmin bool

    Grant admin permissions to the Database User.

    Name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    Region string

    The Scaleway region this resource resides in.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    password String

    Database User password.

    isAdmin Boolean

    Grant admin permissions to the Database User.

    name String

    Database User name.

    Important: Updates to name will recreate the Database User.

    region String

    The Scaleway region this resource resides in.

    instanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    password string

    Database User password.

    isAdmin boolean

    Grant admin permissions to the Database User.

    name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    region string

    The Scaleway region this resource resides in.

    instance_id str

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    password str

    Database User password.

    is_admin bool

    Grant admin permissions to the Database User.

    name str

    Database User name.

    Important: Updates to name will recreate the Database User.

    region str

    The Scaleway region this resource resides in.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    password String

    Database User password.

    isAdmin Boolean

    Grant admin permissions to the Database User.

    name String

    Database User name.

    Important: Updates to name will recreate the Database User.

    region String

    The Scaleway region this resource resides in.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing DatabaseUser Resource

    Get an existing DatabaseUser 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?: DatabaseUserState, opts?: CustomResourceOptions): DatabaseUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            instance_id: Optional[str] = None,
            is_admin: Optional[bool] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            region: Optional[str] = None) -> DatabaseUser
    func GetDatabaseUser(ctx *Context, name string, id IDInput, state *DatabaseUserState, opts ...ResourceOption) (*DatabaseUser, error)
    public static DatabaseUser Get(string name, Input<string> id, DatabaseUserState? state, CustomResourceOptions? opts = null)
    public static DatabaseUser get(String name, Output<String> id, DatabaseUserState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    IsAdmin bool

    Grant admin permissions to the Database User.

    Name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    Password string

    Database User password.

    Region string

    The Scaleway region this resource resides in.

    InstanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    IsAdmin bool

    Grant admin permissions to the Database User.

    Name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    Password string

    Database User password.

    Region string

    The Scaleway region this resource resides in.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    isAdmin Boolean

    Grant admin permissions to the Database User.

    name String

    Database User name.

    Important: Updates to name will recreate the Database User.

    password String

    Database User password.

    region String

    The Scaleway region this resource resides in.

    instanceId string

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    isAdmin boolean

    Grant admin permissions to the Database User.

    name string

    Database User name.

    Important: Updates to name will recreate the Database User.

    password string

    Database User password.

    region string

    The Scaleway region this resource resides in.

    instance_id str

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    is_admin bool

    Grant admin permissions to the Database User.

    name str

    Database User name.

    Important: Updates to name will recreate the Database User.

    password str

    Database User password.

    region str

    The Scaleway region this resource resides in.

    instanceId String

    UUID of the rdb instance.

    Important: Updates to instance_id will recreate the Database User.

    isAdmin Boolean

    Grant admin permissions to the Database User.

    name String

    Database User name.

    Important: Updates to name will recreate the Database User.

    password String

    Database User password.

    region String

    The Scaleway region this resource resides in.

    Import

    Database User can be imported using {region}/{instance_id}/{user_name}, e.g. bash

     $ pulumi import scaleway:index/databaseUser:DatabaseUser admin fr-par/11111111-1111-1111-1111-111111111111/admin
    

    Package Details

    Repository
    scaleway lbrlabs/pulumi-scaleway
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the scaleway Terraform Provider.

    scaleway logo
    Scaleway v1.10.0 published on Saturday, Jul 1, 2023 by lbrlabs