forked from cloudposse/terraform-aws-elasticache-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
59 lines (48 loc) · 1.1 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
variable "region" {
type = string
description = "AWS region"
}
variable "availability_zones" {
type = list(string)
description = "Availability zone IDs"
}
variable "namespace" {
type = string
description = "Namespace (e.g. `eg` or `cp`)"
}
variable "stage" {
type = string
description = "Stage (e.g. `prod`, `dev`, `staging`)"
}
variable "name" {
type = string
description = "Name (e.g. `app` or `cluster`)"
}
variable "cluster_size" {
type = number
description = "Number of nodes in cluster"
}
variable "instance_type" {
type = string
description = "Elastic cache instance type"
}
variable "family" {
type = string
description = "Redis family"
}
variable "engine_version" {
type = string
description = "Redis engine version"
}
variable "at_rest_encryption_enabled" {
type = bool
description = "Enable encryption at rest"
}
variable "transit_encryption_enabled" {
type = bool
description = "Enable TLS"
}
variable "zone_id" {
type = string
description = "Route53 DNS Zone ID"
}