1. Packages
  2. Scaleway
  3. API Docs
  4. databases
  5. User
Scaleway v1.26.0 published on Friday, Mar 28, 2025 by pulumiverse

scaleway.databases.User

Explore with Pulumi AI

Creates and manages database users. For more information refer to the API documentation.

Example Usage

Basic

import * as pulumi from "@pulumi/pulumi";
import * as random from "@pulumi/random";
import * as scaleway from "@pulumiverse/scaleway";

const main = new scaleway.databases.Instance("main", {
    name: "test-rdb",
    nodeType: "DB-DEV-S",
    engine: "PostgreSQL-15",
    isHaCluster: true,
    disableBackup: true,
    userName: "my_initial_user",
    password: "thiZ_is_v&ry_s3cret",
});
const dbPassword = new random.RandomPassword("db_password", {
    length: 16,
    special: true,
});
const dbAdmin = new scaleway.databases.User("db_admin", {
    instanceId: main.id,
    name: "devtools",
    password: dbPassword.result,
    isAdmin: true,
});
Copy
import pulumi
import pulumi_random as random
import pulumiverse_scaleway as scaleway

main = scaleway.databases.Instance("main",
    name="test-rdb",
    node_type="DB-DEV-S",
    engine="PostgreSQL-15",
    is_ha_cluster=True,
    disable_backup=True,
    user_name="my_initial_user",
    password="thiZ_is_v&ry_s3cret")
db_password = random.RandomPassword("db_password",
    length=16,
    special=True)
db_admin = scaleway.databases.User("db_admin",
    instance_id=main.id,
    name="devtools",
    password=db_password.result,
    is_admin=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/databases"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		main, err := databases.NewInstance(ctx, "main", &databases.InstanceArgs{
			Name:          pulumi.String("test-rdb"),
			NodeType:      pulumi.String("DB-DEV-S"),
			Engine:        pulumi.String("PostgreSQL-15"),
			IsHaCluster:   pulumi.Bool(true),
			DisableBackup: pulumi.Bool(true),
			UserName:      pulumi.String("my_initial_user"),
			Password:      pulumi.String("thiZ_is_v&ry_s3cret"),
		})
		if err != nil {
			return err
		}
		dbPassword, err := random.NewRandomPassword(ctx, "db_password", &random.RandomPasswordArgs{
			Length:  pulumi.Int(16),
			Special: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = databases.NewUser(ctx, "db_admin", &databases.UserArgs{
			InstanceId: main.ID(),
			Name:       pulumi.String("devtools"),
			Password:   dbPassword.Result,
			IsAdmin:    pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Random = Pulumi.Random;
using Scaleway = Pulumiverse.Scaleway;

return await Deployment.RunAsync(() => 
{
    var main = new Scaleway.Databases.Instance("main", new()
    {
        Name = "test-rdb",
        NodeType = "DB-DEV-S",
        Engine = "PostgreSQL-15",
        IsHaCluster = true,
        DisableBackup = true,
        UserName = "my_initial_user",
        Password = "thiZ_is_v&ry_s3cret",
    });

    var dbPassword = new Random.RandomPassword("db_password", new()
    {
        Length = 16,
        Special = true,
    });

    var dbAdmin = new Scaleway.Databases.User("db_admin", new()
    {
        InstanceId = main.Id,
        Name = "devtools",
        Password = dbPassword.Result,
        IsAdmin = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.databases.Instance;
import com.pulumi.scaleway.databases.InstanceArgs;
import com.pulumi.random.RandomPassword;
import com.pulumi.random.RandomPasswordArgs;
import com.pulumi.scaleway.databases.User;
import com.pulumi.scaleway.databases.UserArgs;
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 main = new Instance("main", InstanceArgs.builder()
            .name("test-rdb")
            .nodeType("DB-DEV-S")
            .engine("PostgreSQL-15")
            .isHaCluster(true)
            .disableBackup(true)
            .userName("my_initial_user")
            .password("thiZ_is_v&ry_s3cret")
            .build());

        var dbPassword = new RandomPassword("dbPassword", RandomPasswordArgs.builder()
            .length(16)
            .special(true)
            .build());

        var dbAdmin = new User("dbAdmin", UserArgs.builder()
            .instanceId(main.id())
            .name("devtools")
            .password(dbPassword.result())
            .isAdmin(true)
            .build());

    }
}
Copy
resources:
  main:
    type: scaleway:databases:Instance
    properties:
      name: test-rdb
      nodeType: DB-DEV-S
      engine: PostgreSQL-15
      isHaCluster: true
      disableBackup: true
      userName: my_initial_user
      password: thiZ_is_v&ry_s3cret
  dbPassword:
    type: random:RandomPassword
    name: db_password
    properties:
      length: 16
      special: true
  dbAdmin:
    type: scaleway:databases:User
    name: db_admin
    properties:
      instanceId: ${main.id}
      name: devtools
      password: ${dbPassword.result}
      isAdmin: true
Copy

Create User Resource

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

Constructor syntax

new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
@overload
def User(resource_name: str,
         args: UserArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def User(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         instance_id: Optional[str] = None,
         password: Optional[str] = None,
         is_admin: Optional[bool] = None,
         name: Optional[str] = None,
         region: Optional[str] = None)
func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs args, CustomResourceOptions? opts = null)
public User(String name, UserArgs args)
public User(String name, UserArgs args, CustomResourceOptions options)
type: scaleway:databases:User
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. UserArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. UserArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. UserArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. UserArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. UserArgs
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 userResource = new Scaleway.Databases.User("userResource", new()
{
    InstanceId = "string",
    Password = "string",
    IsAdmin = false,
    Name = "string",
    Region = "string",
});
Copy
example, err := databases.NewUser(ctx, "userResource", &databases.UserArgs{
	InstanceId: pulumi.String("string"),
	Password:   pulumi.String("string"),
	IsAdmin:    pulumi.Bool(false),
	Name:       pulumi.String("string"),
	Region:     pulumi.String("string"),
})
Copy
var userResource = new User("userResource", UserArgs.builder()
    .instanceId("string")
    .password("string")
    .isAdmin(false)
    .name("string")
    .region("string")
    .build());
Copy
user_resource = scaleway.databases.User("userResource",
    instance_id="string",
    password="string",
    is_admin=False,
    name="string",
    region="string")
Copy
const userResource = new scaleway.databases.User("userResource", {
    instanceId: "string",
    password: "string",
    isAdmin: false,
    name: "string",
    region: "string",
});
Copy
type: scaleway:databases:User
properties:
    instanceId: string
    isAdmin: false
    name: string
    password: string
    region: string
Copy

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

InstanceId
This property is required.
Changes to this property will trigger replacement.
string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

Password This property is required. string
database user password.
IsAdmin bool
Grant admin permissions to the database user.
Name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

Region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

Password This property is required. string
database user password.
IsAdmin bool
Grant admin permissions to the database user.
Name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

Region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
instanceId
This property is required.
Changes to this property will trigger replacement.
String

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

password This property is required. String
database user password.
isAdmin Boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. String

database user name.

Important: Updates to name will recreate the database user.

region Changes to this property will trigger replacement. String
The Scaleway region this resource resides in.
instanceId
This property is required.
Changes to this property will trigger replacement.
string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

password This property is required. string
database user password.
isAdmin boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
instance_id
This property is required.
Changes to this property will trigger replacement.
str

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

password This property is required. str
database user password.
is_admin bool
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. str

database user name.

Important: Updates to name will recreate the database user.

region Changes to this property will trigger replacement. str
The Scaleway region this resource resides in.
instanceId
This property is required.
Changes to this property will trigger replacement.
String

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

password This property is required. String
database user password.
isAdmin Boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. String

database user name.

Important: Updates to name will recreate the database user.

region Changes to this property will trigger replacement. String
The Scaleway region this resource resides in.

Outputs

All input properties are implicitly available as output properties. Additionally, the User 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 User Resource

Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
@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) -> User
func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
public static User Get(string name, Input<string> id, UserState? state, CustomResourceOptions? opts = null)
public static User get(String name, Output<String> id, UserState state, CustomResourceOptions options)
resources:  _:    type: scaleway:databases:User    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

IsAdmin bool
Grant admin permissions to the database user.
Name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

Password string
database user password.
Region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
InstanceId Changes to this property will trigger replacement. string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

IsAdmin bool
Grant admin permissions to the database user.
Name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

Password string
database user password.
Region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
instanceId Changes to this property will trigger replacement. String

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

isAdmin Boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. String

database user name.

Important: Updates to name will recreate the database user.

password String
database user password.
region Changes to this property will trigger replacement. String
The Scaleway region this resource resides in.
instanceId Changes to this property will trigger replacement. string

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

isAdmin boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. string

database user name.

Important: Updates to name will recreate the database user.

password string
database user password.
region Changes to this property will trigger replacement. string
The Scaleway region this resource resides in.
instance_id Changes to this property will trigger replacement. str

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

is_admin bool
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. str

database user name.

Important: Updates to name will recreate the database user.

password str
database user password.
region Changes to this property will trigger replacement. str
The Scaleway region this resource resides in.
instanceId Changes to this property will trigger replacement. String

UUID of the Database Instance.

Important: Updates to instance_id will recreate the database user.

isAdmin Boolean
Grant admin permissions to the database user.
name Changes to this property will trigger replacement. String

database user name.

Important: Updates to name will recreate the database user.

password String
database user password.
region Changes to this property will trigger replacement. String
The Scaleway region this resource resides in.

Import

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

bash

$ pulumi import scaleway:databases/user:User admin fr-par/11111111-1111-1111-1111-111111111111/admin
Copy

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

Package Details

Repository
scaleway pulumiverse/pulumi-scaleway
License
Apache-2.0
Notes
This Pulumi package is based on the scaleway Terraform Provider.