-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
66 lines (57 loc) · 1.78 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
variable "vpc_id" {
description = "The ID of the VPC into which to deploy the elasticache redis instance."
}
variable "subnet_ids" {
description = "The IDs of the subnets for elasticache redis nodes."
type = list(string)
}
variable "allowed_cidrs" {
description = "The CIDRs allowed access to the elasticache redis instance."
type = list(string)
}
variable "component" {
description = "The component this elasticache redis instance will contain."
}
variable "deployment_identifier" {
description = "An identifier for this elasticache redis instance."
}
variable "redis_port" {
description = "The port the elasticache redis instance should run on."
type = number
default = 6379
}
variable "replication_group_id" {
description = "The ID for the replication group. Defaults to a randomly generated ID."
default = ""
}
variable "engine_version" {
description = "The version of redis to use."
default = "5.0.6"
}
variable "node_count" {
description = "The number of cache nodes to include."
type = number
}
variable "node_type" {
description = "The instance type of the cache nodes."
}
variable "apply_immediately" {
description = "Whether or not to apply modifications immediately."
default = "no"
}
variable "auth_token" {
description = "The authorisation token used to access the elasticache redis instance."
default = ""
}
variable "enable_automatic_failover" {
description = "Whether or not to enable automatic failover for the replication group"
default = "yes"
}
variable "enable_encryption_at_rest" {
description = "Whether or not to enable encryption at rest in the replication group"
default = "yes"
}
variable "enable_encryption_in_transit" {
description = "Whether or not to enable encryption in transit in the replication group"
default = "yes"
}