-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
98 lines (83 loc) · 2.23 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#alicloud_ons_instance
variable "ons_instance_name" {
description = "The specification of ons instance name."
type = string
default = ""
}
variable "ons_instance_remark" {
description = "The specification of ons instance remark."
type = string
default = ""
}
#alicloud_ons_topic
variable "topic" {
description = "The specification of ons topic name."
type = string
default = ""
}
variable "message_type" {
description = "The type of the message."
type = number
default = 0
}
variable "ons_topic_remark" {
description = "The specification of ons topic remark."
type = string
default = ""
}
#alicloud_kvstore_instance
variable "redis_instance_name" {
description = "The specification of the redis instance name."
type = string
default = ""
}
variable "redis_instance_class" {
description = "The specification of the redis instance class."
type = string
default = ""
}
variable "zone_id" {
description = "The specification of zone msg."
type = string
default = ""
}
variable "vswitch_id" {
description = "VSwitch variables, if vswitch_id is empty, then the net_type = classic."
type = string
default = ""
}
variable "security_ips" {
description = "The specification of the security ips."
type = list(string)
default = ["127.0.0.1"]
}
variable "redis_instance_type" {
description = "The specification of the redis instance type."
type = string
default = "Redis"
}
variable "redis_engine_version" {
description = "The specification of the redis engine version."
type = string
default = "4.0"
}
variable "redis_appendonly" {
description = "The specification of the redis is append only."
type = string
default = "yes"
}
variable "redis_lazyfree-lazy-eviction" {
description = "The specification of the redis lazy eviction."
type = string
default = "yes"
}
variable "redis_tags_created" {
description = "The specification of the redis tags Created value."
type = string
default = ""
}
variable "redis_tags_for" {
description = "The specification of the redis tags For value."
type = string
default = ""
}