-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
62 lines (52 loc) · 1.47 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
#alicloud_ons_instance
variable "name" {
description = "The specification of module name."
type = string
default = ""
}
variable "description" {
description = "The specification of module description."
type = string
default = ""
}
#alicloud_kvstore_instance
variable "vswitch_id" {
description = "VSwitch variables, if vswitch_id is empty, then the net_type = classic."
type = string
default = ""
}
variable "availability_zone" {
description = "The available zone to launch modules."
type = string
default = ""
}
variable "security_ips" {
description = "The specification of the security ips."
type = list(string)
default = ["127.0.0.1"]
}
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 appendonly."
type = string
default = "yes"
}
variable "redis_lazyfree_lazy_eviction" {
description = "The specification of the redis lazyfree-lazy-eviction."
type = string
default = "yes"
}
variable "redis_resource_group_id" {
description = "The specification of the redis resource group id."
type = string
default = ""
}
variable "redis_instance_class" {
description = "The specification of the redis resource instance class."
type = string
default = "redis.master.large.default"
}