published on Wednesday, Apr 29, 2026 by pulumiverse
published on Wednesday, Apr 29, 2026 by pulumiverse
Creates and manages Scaleway Data Warehouse deployments. For more information refer to the product documentation.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.datawarehouse.Deployment("main", {
name: "my-datawarehouse",
version: "v25",
replicaCount: 1,
cpuMin: 2,
cpuMax: 4,
ramPerCpu: 4,
password: "thiZ_is_v&ry_s3cret",
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.datawarehouse.Deployment("main",
name="my-datawarehouse",
version="v25",
replica_count=1,
cpu_min=2,
cpu_max=4,
ram_per_cpu=4,
password="thiZ_is_v&ry_s3cret")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/datawarehouse"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datawarehouse.NewDeployment(ctx, "main", &datawarehouse.DeploymentArgs{
Name: pulumi.String("my-datawarehouse"),
Version: pulumi.String("v25"),
ReplicaCount: pulumi.Int(1),
CpuMin: pulumi.Int(2),
CpuMax: pulumi.Int(4),
RamPerCpu: pulumi.Int(4),
Password: pulumi.String("thiZ_is_v&ry_s3cret"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Datawarehouse.Deployment("main", new()
{
Name = "my-datawarehouse",
Version = "v25",
ReplicaCount = 1,
CpuMin = 2,
CpuMax = 4,
RamPerCpu = 4,
Password = "thiZ_is_v&ry_s3cret",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.datawarehouse.Deployment;
import com.pulumi.scaleway.datawarehouse.DeploymentArgs;
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 Deployment("main", DeploymentArgs.builder()
.name("my-datawarehouse")
.version("v25")
.replicaCount(1)
.cpuMin(2)
.cpuMax(4)
.ramPerCpu(4)
.password("thiZ_is_v&ry_s3cret")
.build());
}
}
resources:
main:
type: scaleway:datawarehouse:Deployment
properties:
name: my-datawarehouse
version: v25
replicaCount: 1
cpuMin: 2
cpuMax: 4
ramPerCpu: 4
password: thiZ_is_v&ry_s3cret
With Tags
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.datawarehouse.Deployment("main", {
name: "my-datawarehouse",
version: "v25",
replicaCount: 1,
cpuMin: 2,
cpuMax: 4,
ramPerCpu: 4,
password: "thiZ_is_v&ry_s3cret",
tags: [
"production",
"analytics",
],
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.datawarehouse.Deployment("main",
name="my-datawarehouse",
version="v25",
replica_count=1,
cpu_min=2,
cpu_max=4,
ram_per_cpu=4,
password="thiZ_is_v&ry_s3cret",
tags=[
"production",
"analytics",
])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/datawarehouse"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datawarehouse.NewDeployment(ctx, "main", &datawarehouse.DeploymentArgs{
Name: pulumi.String("my-datawarehouse"),
Version: pulumi.String("v25"),
ReplicaCount: pulumi.Int(1),
CpuMin: pulumi.Int(2),
CpuMax: pulumi.Int(4),
RamPerCpu: pulumi.Int(4),
Password: pulumi.String("thiZ_is_v&ry_s3cret"),
Tags: pulumi.StringArray{
pulumi.String("production"),
pulumi.String("analytics"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Datawarehouse.Deployment("main", new()
{
Name = "my-datawarehouse",
Version = "v25",
ReplicaCount = 1,
CpuMin = 2,
CpuMax = 4,
RamPerCpu = 4,
Password = "thiZ_is_v&ry_s3cret",
Tags = new[]
{
"production",
"analytics",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.datawarehouse.Deployment;
import com.pulumi.scaleway.datawarehouse.DeploymentArgs;
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 Deployment("main", DeploymentArgs.builder()
.name("my-datawarehouse")
.version("v25")
.replicaCount(1)
.cpuMin(2)
.cpuMax(4)
.ramPerCpu(4)
.password("thiZ_is_v&ry_s3cret")
.tags(
"production",
"analytics")
.build());
}
}
resources:
main:
type: scaleway:datawarehouse:Deployment
properties:
name: my-datawarehouse
version: v25
replicaCount: 1
cpuMin: 2
cpuMax: 4
ramPerCpu: 4
password: thiZ_is_v&ry_s3cret
tags:
- production
- analytics
With Private Network
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.network.Vpc("main", {name: "my-vpc"});
const pn = new scaleway.network.PrivateNetwork("pn", {
name: "my-private-network",
vpcId: main.id,
});
const mainDeployment = new scaleway.datawarehouse.Deployment("main", {
name: "my-datawarehouse",
version: "v25",
replicaCount: 1,
cpuMin: 2,
cpuMax: 4,
ramPerCpu: 4,
password: "thiZ_is_v&ry_s3cret",
privateNetwork: {
pnId: pn.id,
},
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.network.Vpc("main", name="my-vpc")
pn = scaleway.network.PrivateNetwork("pn",
name="my-private-network",
vpc_id=main.id)
main_deployment = scaleway.datawarehouse.Deployment("main",
name="my-datawarehouse",
version="v25",
replica_count=1,
cpu_min=2,
cpu_max=4,
ram_per_cpu=4,
password="thiZ_is_v&ry_s3cret",
private_network={
"pn_id": pn.id,
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/datawarehouse"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := network.NewVpc(ctx, "main", &network.VpcArgs{
Name: pulumi.String("my-vpc"),
})
if err != nil {
return err
}
pn, err := network.NewPrivateNetwork(ctx, "pn", &network.PrivateNetworkArgs{
Name: pulumi.String("my-private-network"),
VpcId: main.ID(),
})
if err != nil {
return err
}
_, err = datawarehouse.NewDeployment(ctx, "main", &datawarehouse.DeploymentArgs{
Name: pulumi.String("my-datawarehouse"),
Version: pulumi.String("v25"),
ReplicaCount: pulumi.Int(1),
CpuMin: pulumi.Int(2),
CpuMax: pulumi.Int(4),
RamPerCpu: pulumi.Int(4),
Password: pulumi.String("thiZ_is_v&ry_s3cret"),
PrivateNetwork: &datawarehouse.DeploymentPrivateNetworkArgs{
PnId: pn.ID(),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Network.Vpc("main", new()
{
Name = "my-vpc",
});
var pn = new Scaleway.Network.PrivateNetwork("pn", new()
{
Name = "my-private-network",
VpcId = main.Id,
});
var mainDeployment = new Scaleway.Datawarehouse.Deployment("main", new()
{
Name = "my-datawarehouse",
Version = "v25",
ReplicaCount = 1,
CpuMin = 2,
CpuMax = 4,
RamPerCpu = 4,
Password = "thiZ_is_v&ry_s3cret",
PrivateNetwork = new Scaleway.Datawarehouse.Inputs.DeploymentPrivateNetworkArgs
{
PnId = pn.Id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.network.Vpc;
import com.pulumi.scaleway.network.VpcArgs;
import com.pulumi.scaleway.network.PrivateNetwork;
import com.pulumi.scaleway.network.PrivateNetworkArgs;
import com.pulumi.scaleway.datawarehouse.Deployment;
import com.pulumi.scaleway.datawarehouse.DeploymentArgs;
import com.pulumi.scaleway.datawarehouse.inputs.DeploymentPrivateNetworkArgs;
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 Vpc("main", VpcArgs.builder()
.name("my-vpc")
.build());
var pn = new PrivateNetwork("pn", PrivateNetworkArgs.builder()
.name("my-private-network")
.vpcId(main.id())
.build());
var mainDeployment = new Deployment("mainDeployment", DeploymentArgs.builder()
.name("my-datawarehouse")
.version("v25")
.replicaCount(1)
.cpuMin(2)
.cpuMax(4)
.ramPerCpu(4)
.password("thiZ_is_v&ry_s3cret")
.privateNetwork(DeploymentPrivateNetworkArgs.builder()
.pnId(pn.id())
.build())
.build());
}
}
resources:
main:
type: scaleway:network:Vpc
properties:
name: my-vpc
pn:
type: scaleway:network:PrivateNetwork
properties:
name: my-private-network
vpcId: ${main.id}
mainDeployment:
type: scaleway:datawarehouse:Deployment
name: main
properties:
name: my-datawarehouse
version: v25
replicaCount: 1
cpuMin: 2
cpuMax: 4
ramPerCpu: 4
password: thiZ_is_v&ry_s3cret
privateNetwork:
pnId: ${pn.id}
Create Deployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Deployment(name: string, args: DeploymentArgs, opts?: CustomResourceOptions);@overload
def Deployment(resource_name: str,
args: DeploymentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Deployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
cpu_max: Optional[int] = None,
cpu_min: Optional[int] = None,
version: Optional[str] = None,
replica_count: Optional[int] = None,
ram_per_cpu: Optional[int] = None,
private_network: Optional[DeploymentPrivateNetworkArgs] = None,
password_wo_version: Optional[int] = None,
project_id: Optional[str] = None,
password_wo: Optional[str] = None,
region: Optional[str] = None,
password: Optional[str] = None,
started: Optional[bool] = None,
tags: Optional[Sequence[str]] = None,
name: Optional[str] = None)func NewDeployment(ctx *Context, name string, args DeploymentArgs, opts ...ResourceOption) (*Deployment, error)public Deployment(string name, DeploymentArgs args, CustomResourceOptions? opts = null)
public Deployment(String name, DeploymentArgs args)
public Deployment(String name, DeploymentArgs args, CustomResourceOptions options)
type: scaleway:datawarehouse:Deployment
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 DeploymentArgs
- 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 DeploymentArgs
- 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 DeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeploymentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Deployment 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 Deployment resource accepts the following input properties:
- Cpu
Max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - Cpu
Min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - Ram
Per intCpu - RAM per CPU in GB.
- Replica
Count int - Number of replicas. Can be updated in place via the deployment configuration API.
- Version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- Name string
- Name of the Data Warehouse deployment.
- Password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - Password
Wo intVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - Private
Network Pulumiverse.Scaleway. Datawarehouse. Inputs. Deployment Private Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- Region string
region) The region in which the deployment should be created.- Started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - List<string>
- List of tags to apply to the deployment.
- Cpu
Max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - Cpu
Min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - Ram
Per intCpu - RAM per CPU in GB.
- Replica
Count int - Number of replicas. Can be updated in place via the deployment configuration API.
- Version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- Name string
- Name of the Data Warehouse deployment.
- Password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - Password
Wo intVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - Private
Network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- Region string
region) The region in which the deployment should be created.- Started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - []string
- List of tags to apply to the deployment.
- cpu
Max Integer - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min Integer - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - ram
Per IntegerCpu - RAM per CPU in GB.
- replica
Count Integer - Number of replicas. Can be updated in place via the deployment configuration API.
- version String
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- name String
- Name of the Data Warehouse deployment.
- password String
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo IntegerVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- region String
region) The region in which the deployment should be created.- started Boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - List<String>
- List of tags to apply to the deployment.
- cpu
Max number - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min number - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - ram
Per numberCpu - RAM per CPU in GB.
- replica
Count number - Number of replicas. Can be updated in place via the deployment configuration API.
- version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- name string
- Name of the Data Warehouse deployment.
- password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo numberVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- region string
region) The region in which the deployment should be created.- started boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - string[]
- List of tags to apply to the deployment.
- cpu_
max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu_
min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - ram_
per_ intcpu - RAM per CPU in GB.
- replica_
count int - Number of replicas. Can be updated in place via the deployment configuration API.
- version str
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- name str
- Name of the Data Warehouse deployment.
- password str
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password_
wo_ intversion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private_
network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project_
id str projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- region str
region) The region in which the deployment should be created.- started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - Sequence[str]
- List of tags to apply to the deployment.
- cpu
Max Number - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min Number - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - ram
Per NumberCpu - RAM per CPU in GB.
- replica
Count Number - Number of replicas. Can be updated in place via the deployment configuration API.
- version String
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- name String
- Name of the Data Warehouse deployment.
- password String
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo NumberVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network Property Map - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- region String
region) The region in which the deployment should be created.- started Boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - List<String>
- List of tags to apply to the deployment.
Outputs
All input properties are implicitly available as output properties. Additionally, the Deployment resource produces the following output properties:
- Created
At string - Date and time of deployment creation (RFC 3339 format).
- Id string
- The provider-assigned unique ID for this managed resource.
- Public
Networks List<Pulumiverse.Scaleway. Datawarehouse. Outputs. Deployment Public Network> - Public endpoint information (always created automatically).
- Status string
- The status of the deployment (e.g., "ready", "provisioning").
- Updated
At string - Date and time of deployment last update (RFC 3339 format).
- Created
At string - Date and time of deployment creation (RFC 3339 format).
- Id string
- The provider-assigned unique ID for this managed resource.
- Public
Networks []DeploymentPublic Network - Public endpoint information (always created automatically).
- Status string
- The status of the deployment (e.g., "ready", "provisioning").
- Updated
At string - Date and time of deployment last update (RFC 3339 format).
- created
At String - Date and time of deployment creation (RFC 3339 format).
- id String
- The provider-assigned unique ID for this managed resource.
- public
Networks List<DeploymentPublic Network> - Public endpoint information (always created automatically).
- status String
- The status of the deployment (e.g., "ready", "provisioning").
- updated
At String - Date and time of deployment last update (RFC 3339 format).
- created
At string - Date and time of deployment creation (RFC 3339 format).
- id string
- The provider-assigned unique ID for this managed resource.
- public
Networks DeploymentPublic Network[] - Public endpoint information (always created automatically).
- status string
- The status of the deployment (e.g., "ready", "provisioning").
- updated
At string - Date and time of deployment last update (RFC 3339 format).
- created_
at str - Date and time of deployment creation (RFC 3339 format).
- id str
- The provider-assigned unique ID for this managed resource.
- public_
networks Sequence[DeploymentPublic Network] - Public endpoint information (always created automatically).
- status str
- The status of the deployment (e.g., "ready", "provisioning").
- updated_
at str - Date and time of deployment last update (RFC 3339 format).
- created
At String - Date and time of deployment creation (RFC 3339 format).
- id String
- The provider-assigned unique ID for this managed resource.
- public
Networks List<Property Map> - Public endpoint information (always created automatically).
- status String
- The status of the deployment (e.g., "ready", "provisioning").
- updated
At String - Date and time of deployment last update (RFC 3339 format).
Look up Existing Deployment Resource
Get an existing Deployment 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?: DeploymentState, opts?: CustomResourceOptions): Deployment@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cpu_max: Optional[int] = None,
cpu_min: Optional[int] = None,
created_at: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
password_wo: Optional[str] = None,
password_wo_version: Optional[int] = None,
private_network: Optional[DeploymentPrivateNetworkArgs] = None,
project_id: Optional[str] = None,
public_networks: Optional[Sequence[DeploymentPublicNetworkArgs]] = None,
ram_per_cpu: Optional[int] = None,
region: Optional[str] = None,
replica_count: Optional[int] = None,
started: Optional[bool] = None,
status: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[str] = None,
version: Optional[str] = None) -> Deploymentfunc GetDeployment(ctx *Context, name string, id IDInput, state *DeploymentState, opts ...ResourceOption) (*Deployment, error)public static Deployment Get(string name, Input<string> id, DeploymentState? state, CustomResourceOptions? opts = null)public static Deployment get(String name, Output<String> id, DeploymentState state, CustomResourceOptions options)resources: _: type: scaleway:datawarehouse:Deployment 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.
- Cpu
Max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - Cpu
Min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - Created
At string - Date and time of deployment creation (RFC 3339 format).
- Name string
- Name of the Data Warehouse deployment.
- Password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - Password
Wo intVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - Private
Network Pulumiverse.Scaleway. Datawarehouse. Inputs. Deployment Private Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- Public
Networks List<Pulumiverse.Scaleway. Datawarehouse. Inputs. Deployment Public Network> - Public endpoint information (always created automatically).
- Ram
Per intCpu - RAM per CPU in GB.
- Region string
region) The region in which the deployment should be created.- Replica
Count int - Number of replicas. Can be updated in place via the deployment configuration API.
- Started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - Status string
- The status of the deployment (e.g., "ready", "provisioning").
- List<string>
- List of tags to apply to the deployment.
- Updated
At string - Date and time of deployment last update (RFC 3339 format).
- Version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- Cpu
Max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - Cpu
Min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - Created
At string - Date and time of deployment creation (RFC 3339 format).
- Name string
- Name of the Data Warehouse deployment.
- Password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - Password
Wo intVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - Private
Network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- Public
Networks []DeploymentPublic Network Args - Public endpoint information (always created automatically).
- Ram
Per intCpu - RAM per CPU in GB.
- Region string
region) The region in which the deployment should be created.- Replica
Count int - Number of replicas. Can be updated in place via the deployment configuration API.
- Started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - Status string
- The status of the deployment (e.g., "ready", "provisioning").
- []string
- List of tags to apply to the deployment.
- Updated
At string - Date and time of deployment last update (RFC 3339 format).
- Version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- cpu
Max Integer - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min Integer - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - created
At String - Date and time of deployment creation (RFC 3339 format).
- name String
- Name of the Data Warehouse deployment.
- password String
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo IntegerVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- public
Networks List<DeploymentPublic Network> - Public endpoint information (always created automatically).
- ram
Per IntegerCpu - RAM per CPU in GB.
- region String
region) The region in which the deployment should be created.- replica
Count Integer - Number of replicas. Can be updated in place via the deployment configuration API.
- started Boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - status String
- The status of the deployment (e.g., "ready", "provisioning").
- List<String>
- List of tags to apply to the deployment.
- updated
At String - Date and time of deployment last update (RFC 3339 format).
- version String
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- cpu
Max number - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min number - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - created
At string - Date and time of deployment creation (RFC 3339 format).
- name string
- Name of the Data Warehouse deployment.
- password string
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo numberVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id string projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- public
Networks DeploymentPublic Network[] - Public endpoint information (always created automatically).
- ram
Per numberCpu - RAM per CPU in GB.
- region string
region) The region in which the deployment should be created.- replica
Count number - Number of replicas. Can be updated in place via the deployment configuration API.
- started boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - status string
- The status of the deployment (e.g., "ready", "provisioning").
- string[]
- List of tags to apply to the deployment.
- updated
At string - Date and time of deployment last update (RFC 3339 format).
- version string
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- cpu_
max int - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu_
min int - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - created_
at str - Date and time of deployment creation (RFC 3339 format).
- name str
- Name of the Data Warehouse deployment.
- password str
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password_
wo_ intversion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private_
network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project_
id str projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- public_
networks Sequence[DeploymentPublic Network Args] - Public endpoint information (always created automatically).
- ram_
per_ intcpu - RAM per CPU in GB.
- region str
region) The region in which the deployment should be created.- replica_
count int - Number of replicas. Can be updated in place via the deployment configuration API.
- started bool
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - status str
- The status of the deployment (e.g., "ready", "provisioning").
- Sequence[str]
- List of tags to apply to the deployment.
- updated_
at str - Date and time of deployment last update (RFC 3339 format).
- version str
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
- cpu
Max Number - Maximum CPU count (autoscaling upper bound). Must be greater than or equal to
cpuMin. Can be updated in place. - cpu
Min Number - Minimum CPU count (autoscaling lower bound). Must be less than or equal to
cpuMax. Can be updated in place. - created
At String - Date and time of deployment creation (RFC 3339 format).
- name String
- Name of the Data Warehouse deployment.
- password String
- Password for the first user of the deployment. If not specified, a random password will be generated. Only one of
passwordorpasswordWoshould be specified. Note: plainpasswordis only used during deployment creation; it is not rotated on update. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
Password for the first user of the deployment in write-only mode. Only one of
passwordorpasswordWoshould be specified.passwordWowill not be set in the Terraform state. To update thepasswordWo, you must also update thepasswordWoVersion. Updates are applied via the Users API to the initial user (an administrator when present, otherwise the first user by name). - password
Wo NumberVersion - The version of the write-only password. To update the
passwordWo, you must also update thepasswordWoVersion. - private
Network Property Map - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String projectId) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
- public
Networks List<Property Map> - Public endpoint information (always created automatically).
- ram
Per NumberCpu - RAM per CPU in GB.
- region String
region) The region in which the deployment should be created.- replica
Count Number - Number of replicas. Can be updated in place via the deployment configuration API.
- started Boolean
- Whether the deployment should be running. When set to
false, the provider calls the Stop deployment API after create or update; when set totrue, it calls Start deployment if the deployment is stopped. Scaling fields (replicaCount,cpuMin,cpuMax) require the deployment to be running; if it is stopped, the provider starts it to apply the change, then stops it again whenstartedisfalse. - status String
- The status of the deployment (e.g., "ready", "provisioning").
- List<String>
- List of tags to apply to the deployment.
- updated
At String - Date and time of deployment last update (RFC 3339 format).
- version String
- ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
Supporting Types
DeploymentPrivateNetwork, DeploymentPrivateNetworkArgs
- Pn
Id string - The ID of the private network. Format:
{region}/{id}or just{id}. - Dns
Record string - DNS record for the private endpoint.
- Id string
- The ID of the private endpoint.
- Services
List<Pulumiverse.
Scaleway. Datawarehouse. Inputs. Deployment Private Network Service> - List of services exposed on the private endpoint.
- Pn
Id string - The ID of the private network. Format:
{region}/{id}or just{id}. - Dns
Record string - DNS record for the private endpoint.
- Id string
- The ID of the private endpoint.
- Services
[]Deployment
Private Network Service - List of services exposed on the private endpoint.
- pn
Id String - The ID of the private network. Format:
{region}/{id}or just{id}. - dns
Record String - DNS record for the private endpoint.
- id String
- The ID of the private endpoint.
- services
List<Deployment
Private Network Service> - List of services exposed on the private endpoint.
- pn
Id string - The ID of the private network. Format:
{region}/{id}or just{id}. - dns
Record string - DNS record for the private endpoint.
- id string
- The ID of the private endpoint.
- services
Deployment
Private Network Service[] - List of services exposed on the private endpoint.
- pn_
id str - The ID of the private network. Format:
{region}/{id}or just{id}. - dns_
record str - DNS record for the private endpoint.
- id str
- The ID of the private endpoint.
- services
Sequence[Deployment
Private Network Service] - List of services exposed on the private endpoint.
- pn
Id String - The ID of the private network. Format:
{region}/{id}or just{id}. - dns
Record String - DNS record for the private endpoint.
- id String
- The ID of the private endpoint.
- services List<Property Map>
- List of services exposed on the private endpoint.
DeploymentPrivateNetworkService, DeploymentPrivateNetworkServiceArgs
DeploymentPublicNetwork, DeploymentPublicNetworkArgs
- Dns
Record string - DNS record for the private endpoint.
- Id string
- The ID of the private endpoint.
- Services
List<Pulumiverse.
Scaleway. Datawarehouse. Inputs. Deployment Public Network Service> - List of services exposed on the private endpoint.
- Dns
Record string - DNS record for the private endpoint.
- Id string
- The ID of the private endpoint.
- Services
[]Deployment
Public Network Service - List of services exposed on the private endpoint.
- dns
Record String - DNS record for the private endpoint.
- id String
- The ID of the private endpoint.
- services
List<Deployment
Public Network Service> - List of services exposed on the private endpoint.
- dns
Record string - DNS record for the private endpoint.
- id string
- The ID of the private endpoint.
- services
Deployment
Public Network Service[] - List of services exposed on the private endpoint.
- dns_
record str - DNS record for the private endpoint.
- id str
- The ID of the private endpoint.
- services
Sequence[Deployment
Public Network Service] - List of services exposed on the private endpoint.
- dns
Record String - DNS record for the private endpoint.
- id String
- The ID of the private endpoint.
- services List<Property Map>
- List of services exposed on the private endpoint.
DeploymentPublicNetworkService, DeploymentPublicNetworkServiceArgs
Import
Data Warehouse deployments can be imported using the {region}/{id}, e.g.
$ pulumi import scaleway:datawarehouse/deployment:Deployment main fr-par/11111111-1111-1111-1111-111111111111
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
scalewayTerraform Provider.
published on Wednesday, Apr 29, 2026 by pulumiverse
