alicloud.clickhouse.Account
Explore with Pulumi AI
Provides a Click House Account resource.
For information about Click House Account and how to use it, see What is Account.
NOTE: Available since v1.134.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const type = config.get("type") || "Normal";
const default = alicloud.clickhouse.getRegions({
current: true,
});
const defaultNetwork = new alicloud.vpc.Network("default", {
vpcName: name,
cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
vswitchName: name,
cidrBlock: "10.4.0.0/24",
vpcId: defaultNetwork.id,
zoneId: _default.then(_default => _default.regions?.[0]?.zoneIds?.[0]?.zoneId),
});
const defaultDbCluster = new alicloud.clickhouse.DbCluster("default", {
dbClusterVersion: "22.8.5.29",
category: "Basic",
dbClusterClass: "S8",
dbClusterNetworkType: "vpc",
dbNodeGroupCount: 1,
paymentType: "PayAsYouGo",
dbNodeStorage: "500",
storageType: "cloud_essd",
vswitchId: defaultSwitch.id,
vpcId: defaultNetwork.id,
});
const defaultAccount = new alicloud.clickhouse.Account("default", {
dbClusterId: defaultDbCluster.id,
accountDescription: "tf-example-description",
accountName: "examplename",
accountPassword: "Example1234",
type: type,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
type = config.get("type")
if type is None:
type = "Normal"
default = alicloud.clickhouse.get_regions(current=True)
default_network = alicloud.vpc.Network("default",
vpc_name=name,
cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("default",
vswitch_name=name,
cidr_block="10.4.0.0/24",
vpc_id=default_network.id,
zone_id=default.regions[0].zone_ids[0].zone_id)
default_db_cluster = alicloud.clickhouse.DbCluster("default",
db_cluster_version="22.8.5.29",
category="Basic",
db_cluster_class="S8",
db_cluster_network_type="vpc",
db_node_group_count=1,
payment_type="PayAsYouGo",
db_node_storage="500",
storage_type="cloud_essd",
vswitch_id=default_switch.id,
vpc_id=default_network.id)
default_account = alicloud.clickhouse.Account("default",
db_cluster_id=default_db_cluster.id,
account_description="tf-example-description",
account_name="examplename",
account_password="Example1234",
type=type)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/clickhouse"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_type := "Normal"
if param := cfg.Get("type"); param != "" {
_type = param
}
_default, err := clickhouse.GetRegions(ctx, &clickhouse.GetRegionsArgs{
Current: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/24"),
VpcId: defaultNetwork.ID(),
ZoneId: pulumi.String(_default.Regions[0].ZoneIds[0].ZoneId),
})
if err != nil {
return err
}
defaultDbCluster, err := clickhouse.NewDbCluster(ctx, "default", &clickhouse.DbClusterArgs{
DbClusterVersion: pulumi.String("22.8.5.29"),
Category: pulumi.String("Basic"),
DbClusterClass: pulumi.String("S8"),
DbClusterNetworkType: pulumi.String("vpc"),
DbNodeGroupCount: pulumi.Int(1),
PaymentType: pulumi.String("PayAsYouGo"),
DbNodeStorage: pulumi.String("500"),
StorageType: pulumi.String("cloud_essd"),
VswitchId: defaultSwitch.ID(),
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
_, err = clickhouse.NewAccount(ctx, "default", &clickhouse.AccountArgs{
DbClusterId: defaultDbCluster.ID(),
AccountDescription: pulumi.String("tf-example-description"),
AccountName: pulumi.String("examplename"),
AccountPassword: pulumi.String("Example1234"),
Type: pulumi.String(_type),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-example";
var type = config.Get("type") ?? "Normal";
var @default = AliCloud.ClickHouse.GetRegions.Invoke(new()
{
Current = true,
});
var defaultNetwork = new AliCloud.Vpc.Network("default", new()
{
VpcName = name,
CidrBlock = "10.4.0.0/16",
});
var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
{
VswitchName = name,
CidrBlock = "10.4.0.0/24",
VpcId = defaultNetwork.Id,
ZoneId = @default.Apply(@default => @default.Apply(getRegionsResult => getRegionsResult.Regions[0]?.ZoneIds[0]?.ZoneId)),
});
var defaultDbCluster = new AliCloud.ClickHouse.DbCluster("default", new()
{
DbClusterVersion = "22.8.5.29",
Category = "Basic",
DbClusterClass = "S8",
DbClusterNetworkType = "vpc",
DbNodeGroupCount = 1,
PaymentType = "PayAsYouGo",
DbNodeStorage = "500",
StorageType = "cloud_essd",
VswitchId = defaultSwitch.Id,
VpcId = defaultNetwork.Id,
});
var defaultAccount = new AliCloud.ClickHouse.Account("default", new()
{
DbClusterId = defaultDbCluster.Id,
AccountDescription = "tf-example-description",
AccountName = "examplename",
AccountPassword = "Example1234",
Type = type,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.clickhouse.ClickhouseFunctions;
import com.pulumi.alicloud.clickhouse.inputs.GetRegionsArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.clickhouse.DbCluster;
import com.pulumi.alicloud.clickhouse.DbClusterArgs;
import com.pulumi.alicloud.clickhouse.Account;
import com.pulumi.alicloud.clickhouse.AccountArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf-example");
final var type = config.get("type").orElse("Normal");
final var default = ClickhouseFunctions.getRegions(GetRegionsArgs.builder()
.current(true)
.build());
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(name)
.cidrBlock("10.4.0.0/16")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(name)
.cidrBlock("10.4.0.0/24")
.vpcId(defaultNetwork.id())
.zoneId(default_.regions()[0].zoneIds()[0].zoneId())
.build());
var defaultDbCluster = new DbCluster("defaultDbCluster", DbClusterArgs.builder()
.dbClusterVersion("22.8.5.29")
.category("Basic")
.dbClusterClass("S8")
.dbClusterNetworkType("vpc")
.dbNodeGroupCount("1")
.paymentType("PayAsYouGo")
.dbNodeStorage("500")
.storageType("cloud_essd")
.vswitchId(defaultSwitch.id())
.vpcId(defaultNetwork.id())
.build());
var defaultAccount = new Account("defaultAccount", AccountArgs.builder()
.dbClusterId(defaultDbCluster.id())
.accountDescription("tf-example-description")
.accountName("examplename")
.accountPassword("Example1234")
.type(type)
.build());
}
}
configuration:
name:
type: string
default: tf-example
type:
type: string
default: Normal
resources:
defaultNetwork:
type: alicloud:vpc:Network
name: default
properties:
vpcName: ${name}
cidrBlock: 10.4.0.0/16
defaultSwitch:
type: alicloud:vpc:Switch
name: default
properties:
vswitchName: ${name}
cidrBlock: 10.4.0.0/24
vpcId: ${defaultNetwork.id}
zoneId: ${default.regions[0].zoneIds[0].zoneId}
defaultDbCluster:
type: alicloud:clickhouse:DbCluster
name: default
properties:
dbClusterVersion: 22.8.5.29
category: Basic
dbClusterClass: S8
dbClusterNetworkType: vpc
dbNodeGroupCount: '1'
paymentType: PayAsYouGo
dbNodeStorage: '500'
storageType: cloud_essd
vswitchId: ${defaultSwitch.id}
vpcId: ${defaultNetwork.id}
defaultAccount:
type: alicloud:clickhouse:Account
name: default
properties:
dbClusterId: ${defaultDbCluster.id}
accountDescription: tf-example-description
accountName: examplename
accountPassword: Example1234
type: ${type}
variables:
default:
fn::invoke:
Function: alicloud:clickhouse:getRegions
Arguments:
current: true
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
account_password: Optional[str] = None,
db_cluster_id: Optional[str] = None,
account_description: Optional[str] = None,
allow_databases: Optional[str] = None,
allow_dictionaries: Optional[str] = None,
ddl_authority: Optional[bool] = None,
dml_authority: Optional[str] = None,
total_databases: Optional[str] = None,
total_dictionaries: Optional[str] = None,
type: Optional[str] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: alicloud:clickhouse:Account
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 AccountArgs
- 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 AccountArgs
- 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 AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- 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 alicloudAccountResource = new AliCloud.ClickHouse.Account("alicloudAccountResource", new()
{
AccountName = "string",
AccountPassword = "string",
DbClusterId = "string",
AccountDescription = "string",
AllowDatabases = "string",
AllowDictionaries = "string",
DdlAuthority = false,
DmlAuthority = "string",
Type = "string",
});
example, err := clickhouse.NewAccount(ctx, "alicloudAccountResource", &clickhouse.AccountArgs{
AccountName: pulumi.String("string"),
AccountPassword: pulumi.String("string"),
DbClusterId: pulumi.String("string"),
AccountDescription: pulumi.String("string"),
AllowDatabases: pulumi.String("string"),
AllowDictionaries: pulumi.String("string"),
DdlAuthority: pulumi.Bool(false),
DmlAuthority: pulumi.String("string"),
Type: pulumi.String("string"),
})
var alicloudAccountResource = new Account("alicloudAccountResource", AccountArgs.builder()
.accountName("string")
.accountPassword("string")
.dbClusterId("string")
.accountDescription("string")
.allowDatabases("string")
.allowDictionaries("string")
.ddlAuthority(false)
.dmlAuthority("string")
.type("string")
.build());
alicloud_account_resource = alicloud.clickhouse.Account("alicloudAccountResource",
account_name="string",
account_password="string",
db_cluster_id="string",
account_description="string",
allow_databases="string",
allow_dictionaries="string",
ddl_authority=False,
dml_authority="string",
type="string")
const alicloudAccountResource = new alicloud.clickhouse.Account("alicloudAccountResource", {
accountName: "string",
accountPassword: "string",
dbClusterId: "string",
accountDescription: "string",
allowDatabases: "string",
allowDictionaries: "string",
ddlAuthority: false,
dmlAuthority: "string",
type: "string",
});
type: alicloud:clickhouse:Account
properties:
accountDescription: string
accountName: string
accountPassword: string
allowDatabases: string
allowDictionaries: string
dbClusterId: string
ddlAuthority: false
dmlAuthority: string
type: string
Account Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Account resource accepts the following input properties:
- Account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- Account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- Db
Cluster stringId - The db cluster id.
- Account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- Allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- Allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - Total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- Total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- Type string
- The type of the database account. Valid values:
Normal
orSuper
.
- Account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- Account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- Db
Cluster stringId - The db cluster id.
- Account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- Allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- Allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - Total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- Total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- Type string
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Name String - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password String - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- db
Cluster StringId - The db cluster id.
- account
Description String - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- allow
Databases String - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries String - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- Boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - String
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - total
Databases String - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries String - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type String
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- db
Cluster stringId - The db cluster id.
- account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type string
- The type of the database account. Valid values:
Normal
orSuper
.
- account_
name str - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account_
password str - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- db_
cluster_ strid - The db cluster id.
- account_
description str - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- allow_
databases str - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow_
dictionaries str - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - str
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - total_
databases str - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total_
dictionaries str - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type str
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Name String - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password String - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- db
Cluster StringId - The db cluster id.
- account
Description String - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- allow
Databases String - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries String - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- Boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - String
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - total
Databases String - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries String - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type String
- The type of the database account. Valid values:
Normal
orSuper
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
Look up Existing Account Resource
Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_description: Optional[str] = None,
account_name: Optional[str] = None,
account_password: Optional[str] = None,
allow_databases: Optional[str] = None,
allow_dictionaries: Optional[str] = None,
db_cluster_id: Optional[str] = None,
ddl_authority: Optional[bool] = None,
dml_authority: Optional[str] = None,
status: Optional[str] = None,
total_databases: Optional[str] = None,
total_dictionaries: Optional[str] = None,
type: Optional[str] = None) -> Account
func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- Account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- Account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- Allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- Allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- Db
Cluster stringId - The db cluster id.
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - Status string
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - Total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- Total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- Type string
- The type of the database account. Valid values:
Normal
orSuper
.
- Account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- Account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- Account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- Allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- Allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- Db
Cluster stringId - The db cluster id.
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - Status string
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - Total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- Total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- Type string
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Description String - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- account
Name String - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password String - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- allow
Databases String - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries String - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- db
Cluster StringId - The db cluster id.
- Boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - String
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - status String
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - total
Databases String - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries String - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type String
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Description string - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- account
Name string - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password string - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- allow
Databases string - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries string - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- db
Cluster stringId - The db cluster id.
- boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - string
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - status string
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - total
Databases string - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries string - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type string
- The type of the database account. Valid values:
Normal
orSuper
.
- account_
description str - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- account_
name str - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account_
password str - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- allow_
databases str - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow_
dictionaries str - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- db_
cluster_ strid - The db cluster id.
- bool
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - str
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - status str
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - total_
databases str - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total_
dictionaries str - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type str
- The type of the database account. Valid values:
Normal
orSuper
.
- account
Description String - In Chinese, English letter. May contain Chinese and English characters, lowercase letters, numbers, and underscores (_), the dash (-). Cannot start with http:// and https:// at the beginning. Length is from 2 to 256 characters.
- account
Name String - Account name: lowercase letters, numbers, underscores, lowercase letter; length no more than 16 characters.
- account
Password String - The account password: uppercase letters, lowercase letters, lowercase letters, numbers, and special characters (special character! #$%^& author (s):_+-=) in a length of 8-32 bit.
- allow
Databases String - The list of databases to which you want to grant permissions. Separate databases with commas (,).
- allow
Dictionaries String - The list of dictionaries to which you want to grant permissions. Separate dictionaries with commas (,).
- db
Cluster StringId - The db cluster id.
- Boolean
- Specifies whether to grant DDL permissions to the database account. Valid values:
true
andfalse
. - String
- Specifies whether to grant DML permissions to the database account. Valid values:
all
andreadOnly,modify
. - status String
- The status of the resource. Valid Status:
Creating
,Available
,Deleting
. - total
Databases String - The list of all databases. Separate databases with commas (,). Field 'total_databases' has been deprecated from provider version 1.223.1.
- total
Dictionaries String - The list of all dictionaries. Separate dictionaries with commas (,). Field 'total_dictionaries' has been deprecated from provider version 1.223.1.
- type String
- The type of the database account. Valid values:
Normal
orSuper
.
Import
Click House Account can be imported using the id, e.g.
$ pulumi import alicloud:clickhouse/account:Account example <db_cluster_id>:<account_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.