You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="(Deprecated from version 1.1.0) The profile name as set in the shared credentials file. If not set, it will be sourced from the ALICLOUD_PROFILE environment variable."
4
-
type=string
5
-
default=""
6
-
}
7
-
8
-
variable"shared_credentials_file" {
9
-
description="(Deprecated from version 1.1.0) This is the path to the shared credentials file. If this is not set and a profile is specified, $HOME/.aliyun/config.json will be used."
10
-
type=string
11
-
default=""
12
-
}
13
-
14
-
variable"region" {
15
-
description="(Deprecated from version 1.1.0) The region used to launch this module resources."
16
-
type=string
17
-
default=""
18
-
}
19
-
20
-
variable"skip_region_validation" {
21
-
description="(Deprecated from version 1.1.0) Skip static validation of region ID. Used by users of alternative AlibabaCloud-like APIs or users w/ access to regions that are not public (yet)."
22
-
type=bool
23
-
default=false
24
-
}
25
-
26
1
# ADB Cluster
27
2
variable"create_cluster" {
28
3
description="Whether to create ADB cluster. If false, you can use a existing ADB cluster by setting 'existing_cluster_id'."
29
4
type=bool
30
-
default=false
5
+
default=true
31
6
}
32
7
33
8
variable"existing_cluster_id" {
34
9
description="The Id of an existing ADB cluster. It will be ignored when create_cluster = true."
35
10
type=string
36
-
default=""
11
+
default=null
37
12
}
38
13
39
14
variable"vswitch_id" {
40
15
description="VSwitch variables, if vswitch_id is empty, then the net_type = classic."
41
16
type=string
42
-
default=""
17
+
default=null
43
18
}
44
19
45
20
variable"availability_zone" {
46
21
description="The available zone to launch ADB cluster."
47
22
type=string
48
-
default=""
23
+
default=null
49
24
}
50
25
51
26
variable"db_cluster_version" {
@@ -81,17 +56,17 @@ variable "db_node_storage" {
81
56
variable"mode" {
82
57
description=" The mode of the cluster. Valid values: reserver, flexible."
83
58
type=string
84
-
default="reserver"
59
+
default=null
85
60
}
86
61
87
-
variable"pay_type" {
88
-
description="pay type, Valid value:Prepaid: The subscription billing method is used, Postpaid: The pay-as-you-go billing method is used."
62
+
variable"payment_type" {
63
+
description="The payment type of the resource. Valid values: `PayAsYouGo` and `Subscription`. Default Value: `PayAsYouGo`"
89
64
type=string
90
-
default="PostPaid"
65
+
default=null
91
66
}
92
67
93
68
variable"description" {
94
69
description="Display name of the cluster, [2, 128] English or Chinese characters, must start with a letter or Chinese in size, can contain numbers, '_' or '.', '-'."
0 commit comments