published on Monday, Mar 9, 2026 by pulumiverse
published on Monday, Mar 9, 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,
ram_per_cpu: Optional[int] = None,
replica_count: Optional[int] = None,
version: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
private_network: Optional[DeploymentPrivateNetworkArgs] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Sequence[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.
Constructor example
The following reference example uses placeholder values for all input properties.
var deploymentResource = new Scaleway.Datawarehouse.Deployment("deploymentResource", new()
{
CpuMax = 0,
CpuMin = 0,
RamPerCpu = 0,
ReplicaCount = 0,
Version = "string",
Name = "string",
Password = "string",
PrivateNetwork = new Scaleway.Datawarehouse.Inputs.DeploymentPrivateNetworkArgs
{
PnId = "string",
DnsRecord = "string",
Id = "string",
Services = new[]
{
new Scaleway.Datawarehouse.Inputs.DeploymentPrivateNetworkServiceArgs
{
Port = 0,
Protocol = "string",
},
},
},
ProjectId = "string",
Region = "string",
Tags = new[]
{
"string",
},
});
example, err := datawarehouse.NewDeployment(ctx, "deploymentResource", &datawarehouse.DeploymentArgs{
CpuMax: pulumi.Int(0),
CpuMin: pulumi.Int(0),
RamPerCpu: pulumi.Int(0),
ReplicaCount: pulumi.Int(0),
Version: pulumi.String("string"),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
PrivateNetwork: &datawarehouse.DeploymentPrivateNetworkArgs{
PnId: pulumi.String("string"),
DnsRecord: pulumi.String("string"),
Id: pulumi.String("string"),
Services: datawarehouse.DeploymentPrivateNetworkServiceArray{
&datawarehouse.DeploymentPrivateNetworkServiceArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
},
},
},
ProjectId: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var deploymentResource = new com.pulumi.scaleway.datawarehouse.Deployment("deploymentResource", com.pulumi.scaleway.datawarehouse.DeploymentArgs.builder()
.cpuMax(0)
.cpuMin(0)
.ramPerCpu(0)
.replicaCount(0)
.version("string")
.name("string")
.password("string")
.privateNetwork(DeploymentPrivateNetworkArgs.builder()
.pnId("string")
.dnsRecord("string")
.id("string")
.services(DeploymentPrivateNetworkServiceArgs.builder()
.port(0)
.protocol("string")
.build())
.build())
.projectId("string")
.region("string")
.tags("string")
.build());
deployment_resource = scaleway.datawarehouse.Deployment("deploymentResource",
cpu_max=0,
cpu_min=0,
ram_per_cpu=0,
replica_count=0,
version="string",
name="string",
password="string",
private_network={
"pn_id": "string",
"dns_record": "string",
"id": "string",
"services": [{
"port": 0,
"protocol": "string",
}],
},
project_id="string",
region="string",
tags=["string"])
const deploymentResource = new scaleway.datawarehouse.Deployment("deploymentResource", {
cpuMax: 0,
cpuMin: 0,
ramPerCpu: 0,
replicaCount: 0,
version: "string",
name: "string",
password: "string",
privateNetwork: {
pnId: "string",
dnsRecord: "string",
id: "string",
services: [{
port: 0,
protocol: "string",
}],
},
projectId: "string",
region: "string",
tags: ["string"],
});
type: scaleway:datawarehouse:Deployment
properties:
cpuMax: 0
cpuMin: 0
name: string
password: string
privateNetwork:
dnsRecord: string
id: string
pnId: string
services:
- port: 0
protocol: string
projectId: string
ramPerCpu: 0
region: string
replicaCount: 0
tags:
- string
version: string
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. Must be greater than or equal to
cpu_min. - Cpu
Min int - Minimum CPU count. Must be less than or equal to
cpu_max. - Ram
Per intCpu - RAM per CPU in GB.
- Replica
Count int - Number of replicas.
- 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. Note: password is only used during deployment creation.
- 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 project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- Region string
region) The region in which the deployment should be created.- List<string>
- List of tags to apply to the deployment.
- Cpu
Max int - Maximum CPU count. Must be greater than or equal to
cpu_min. - Cpu
Min int - Minimum CPU count. Must be less than or equal to
cpu_max. - Ram
Per intCpu - RAM per CPU in GB.
- Replica
Count int - Number of replicas.
- 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. Note: password is only used during deployment creation.
- Private
Network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- Region string
region) The region in which the deployment should be created.- []string
- List of tags to apply to the deployment.
- cpu
Max Integer - Maximum CPU count. Must be greater than or equal to
cpu_min. - cpu
Min Integer - Minimum CPU count. Must be less than or equal to
cpu_max. - ram
Per IntegerCpu - RAM per CPU in GB.
- replica
Count Integer - Number of replicas.
- 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. Note: password is only used during deployment creation.
- private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- region String
region) The region in which the deployment should be created.- List<String>
- List of tags to apply to the deployment.
- cpu
Max number - Maximum CPU count. Must be greater than or equal to
cpu_min. - cpu
Min number - Minimum CPU count. Must be less than or equal to
cpu_max. - ram
Per numberCpu - RAM per CPU in GB.
- replica
Count number - Number of replicas.
- 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. Note: password is only used during deployment creation.
- private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id string project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- region string
region) The region in which the deployment should be created.- string[]
- List of tags to apply to the deployment.
- cpu_
max int - Maximum CPU count. Must be greater than or equal to
cpu_min. - cpu_
min int - Minimum CPU count. Must be less than or equal to
cpu_max. - ram_
per_ intcpu - RAM per CPU in GB.
- replica_
count int - Number of replicas.
- 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. Note: password is only used during deployment creation.
- private_
network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project_
id str project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- region str
region) The region in which the deployment should be created.- Sequence[str]
- List of tags to apply to the deployment.
- cpu
Max Number - Maximum CPU count. Must be greater than or equal to
cpu_min. - cpu
Min Number - Minimum CPU count. Must be less than or equal to
cpu_max. - ram
Per NumberCpu - RAM per CPU in GB.
- replica
Count Number - Number of replicas.
- 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. Note: password is only used during deployment creation.
- private
Network Property Map - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- region String
region) The region in which the deployment should be created.- 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,
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,
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. Must be greater than or equal to
cpu_min. - Cpu
Min int - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- 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 project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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. Must be greater than or equal to
cpu_min. - Cpu
Min int - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- Private
Network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- Project
Id string project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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. Must be greater than or equal to
cpu_min. - cpu
Min Integer - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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. Must be greater than or equal to
cpu_min. - cpu
Min number - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- private
Network DeploymentPrivate Network - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id string project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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. Must be greater than or equal to
cpu_min. - cpu_
min int - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- private_
network DeploymentPrivate Network Args - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project_
id str project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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. Must be greater than or equal to
cpu_min. - cpu
Min Number - Minimum CPU count. Must be less than or equal to
cpu_max. - 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. Note: password is only used during deployment creation.
- private
Network Property Map - Private network configuration to expose your deployment. Changing this forces recreation of the deployment.
- project
Id String project_id) The ID of the project the deployment is associated with.Note: A public endpoint is always created automatically alongside any private network configuration.
Note: During the private beta phase, modifying
cpu_min,cpu_max, andreplica_counthas no effect until the feature is launched in general availability.- 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.
- 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.
bash
$ 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 Monday, Mar 9, 2026 by pulumiverse
