published on Thursday, Apr 23, 2026 by Pulumi
published on Thursday, Apr 23, 2026 by Pulumi
Creates and manages an Aiven for ClickHouse user. If this resource is missing (for example, after a service power off), it’s removed from the state and a new create plan is generated.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const exampleUser = new aiven.ClickhouseUser("example_user", {
project: exampleProject.project,
serviceName: exampleService.serviceName,
username: "analyst",
});
import pulumi
import pulumi_aiven as aiven
example_user = aiven.ClickhouseUser("example_user",
project=example_project["project"],
service_name=example_service["serviceName"],
username="analyst")
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewClickhouseUser(ctx, "example_user", &aiven.ClickhouseUserArgs{
Project: pulumi.Any(exampleProject.Project),
ServiceName: pulumi.Any(exampleService.ServiceName),
Username: pulumi.String("analyst"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var exampleUser = new Aiven.Index.ClickhouseUser("example_user", new()
{
Project = exampleProject.Project,
ServiceName = exampleService.ServiceName,
Username = "analyst",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.ClickhouseUser;
import com.pulumi.aiven.ClickhouseUserArgs;
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 exampleUser = new ClickhouseUser("exampleUser", ClickhouseUserArgs.builder()
.project(exampleProject.project())
.serviceName(exampleService.serviceName())
.username("analyst")
.build());
}
}
resources:
exampleUser:
type: aiven:ClickhouseUser
name: example_user
properties:
project: ${exampleProject.project}
serviceName: ${exampleService.serviceName}
username: analyst
Example coming soon!
Create ClickhouseUser Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClickhouseUser(name: string, args: ClickhouseUserArgs, opts?: CustomResourceOptions);@overload
def ClickhouseUser(resource_name: str,
args: ClickhouseUserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClickhouseUser(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
username: Optional[str] = None,
password: Optional[str] = None,
password_wo: Optional[str] = None,
password_wo_version: Optional[int] = None,
timeouts: Optional[ClickhouseUserTimeoutsArgs] = None)func NewClickhouseUser(ctx *Context, name string, args ClickhouseUserArgs, opts ...ResourceOption) (*ClickhouseUser, error)public ClickhouseUser(string name, ClickhouseUserArgs args, CustomResourceOptions? opts = null)
public ClickhouseUser(String name, ClickhouseUserArgs args)
public ClickhouseUser(String name, ClickhouseUserArgs args, CustomResourceOptions options)
type: aiven:ClickhouseUser
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aiven_clickhouseuser" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ClickhouseUserArgs
- 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 ClickhouseUserArgs
- 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 ClickhouseUserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClickhouseUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClickhouseUserArgs
- 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 clickhouseUserResource = new Aiven.ClickhouseUser("clickhouseUserResource", new()
{
Project = "string",
ServiceName = "string",
Username = "string",
Password = "string",
PasswordWo = "string",
PasswordWoVersion = 0,
Timeouts = new Aiven.Inputs.ClickhouseUserTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := aiven.NewClickhouseUser(ctx, "clickhouseUserResource", &aiven.ClickhouseUserArgs{
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Username: pulumi.String("string"),
Password: pulumi.String("string"),
PasswordWo: pulumi.String("string"),
PasswordWoVersion: pulumi.Int(0),
Timeouts: &aiven.ClickhouseUserTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aiven_clickhouseuser" "clickhouseUserResource" {
project = "string"
service_name = "string"
username = "string"
password = "string"
password_wo = "string"
password_wo_version = 0
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var clickhouseUserResource = new ClickhouseUser("clickhouseUserResource", ClickhouseUserArgs.builder()
.project("string")
.serviceName("string")
.username("string")
.password("string")
.passwordWo("string")
.passwordWoVersion(0)
.timeouts(ClickhouseUserTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
clickhouse_user_resource = aiven.ClickhouseUser("clickhouseUserResource",
project="string",
service_name="string",
username="string",
password="string",
password_wo="string",
password_wo_version=0,
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const clickhouseUserResource = new aiven.ClickhouseUser("clickhouseUserResource", {
project: "string",
serviceName: "string",
username: "string",
password: "string",
passwordWo: "string",
passwordWoVersion: 0,
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: aiven:ClickhouseUser
properties:
password: string
passwordWo: string
passwordWoVersion: 0
project: string
serviceName: string
timeouts:
create: string
delete: string
read: string
update: string
username: string
ClickhouseUser 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 ClickhouseUser resource accepts the following input properties:
- Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - Password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - Password
Wo intVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - Timeouts
Clickhouse
User Timeouts
- Project string
- Project name. Changing this property forces recreation of the resource.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - Password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - Password
Wo intVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - Timeouts
Clickhouse
User Timeouts Args
- project string
- Project name. Changing this property forces recreation of the resource.
- service_
name string - Service name. Changing this property forces recreation of the resource.
- username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password_
wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password_
wo_ numberversion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - timeouts object
- project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- username String
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - password String
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo IntegerVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - timeouts
Clickhouse
User Timeouts
- project string
- Project name. Changing this property forces recreation of the resource.
- service
Name string - Service name. Changing this property forces recreation of the resource.
- username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo numberVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - timeouts
Clickhouse
User Timeouts
- project str
- Project name. Changing this property forces recreation of the resource.
- service_
name str - Service name. Changing this property forces recreation of the resource.
- username str
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - password str
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password_
wo_ intversion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - timeouts
Clickhouse
User Timeouts Args
- project String
- Project name. Changing this property forces recreation of the resource.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- username String
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - password String
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo NumberVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the ClickhouseUser resource produces the following output properties:
Look up Existing ClickhouseUser Resource
Get an existing ClickhouseUser 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?: ClickhouseUserState, opts?: CustomResourceOptions): ClickhouseUser@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
password: Optional[str] = None,
password_wo: Optional[str] = None,
password_wo_version: Optional[int] = None,
project: Optional[str] = None,
required: Optional[bool] = None,
service_name: Optional[str] = None,
timeouts: Optional[ClickhouseUserTimeoutsArgs] = None,
username: Optional[str] = None,
uuid: Optional[str] = None) -> ClickhouseUserfunc GetClickhouseUser(ctx *Context, name string, id IDInput, state *ClickhouseUserState, opts ...ResourceOption) (*ClickhouseUser, error)public static ClickhouseUser Get(string name, Input<string> id, ClickhouseUserState? state, CustomResourceOptions? opts = null)public static ClickhouseUser get(String name, Output<String> id, ClickhouseUserState state, CustomResourceOptions options)resources: _: type: aiven:ClickhouseUser get: id: ${id}import {
to = aiven_clickhouseuser.example
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.
- Password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - Password
Wo intVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - Project string
- Project name. Changing this property forces recreation of the resource.
- Required bool
- Required user.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Clickhouse
User Timeouts - Username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - Uuid string
- User identifier.
- Password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - Password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - Password
Wo intVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - Project string
- Project name. Changing this property forces recreation of the resource.
- Required bool
- Required user.
- Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Clickhouse
User Timeouts Args - Username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - Uuid string
- User identifier.
- password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password_
wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password_
wo_ numberversion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - project string
- Project name. Changing this property forces recreation of the resource.
- required bool
- Required user.
- service_
name string - Service name. Changing this property forces recreation of the resource.
- timeouts object
- username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - uuid string
- User identifier.
- password String
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo IntegerVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - project String
- Project name. Changing this property forces recreation of the resource.
- required Boolean
- Required user.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts
Clickhouse
User Timeouts - username String
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - uuid String
- User identifier.
- password string
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo numberVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - project string
- Project name. Changing this property forces recreation of the resource.
- required boolean
- Required user.
- service
Name string - Service name. Changing this property forces recreation of the resource.
- timeouts
Clickhouse
User Timeouts - username string
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - uuid string
- User identifier.
- password str
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password_
wo_ intversion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - project str
- Project name. Changing this property forces recreation of the resource.
- required bool
- Required user.
- service_
name str - Service name. Changing this property forces recreation of the resource.
- timeouts
Clickhouse
User Timeouts Args - username str
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - uuid str
- User identifier.
- password String
- The password of the service user (auto-generated if not provided). The field conflicts with
passwordWo. Length must be between8and256. - password
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
The password of the service user (write-only, not stored in state). The field is required with
passwordWoVersion. The field conflicts withpassword. Length must be between8and256. - password
Wo NumberVersion - Version number for
passwordWo. Increment this to rotate the password. The field is required withpasswordWo. Minimum value:1. - project String
- Project name. Changing this property forces recreation of the resource.
- required Boolean
- Required user.
- service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts Property Map
- username String
- User name. Maximum length:
64. Changing this property forces recreation of the resource. - uuid String
- User identifier.
Supporting Types
ClickhouseUserTimeouts, ClickhouseUserTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default_ String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default str
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- default String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
$ pulumi import aiven:index/clickhouseUser:ClickhouseUser example PROJECT/SERVICE_NAME/UUID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.
published on Thursday, Apr 23, 2026 by Pulumi
