forked from cloudposse/terraform-aws-elasticache-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
50 lines (41 loc) · 1012 Bytes
/
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
variable "region" {
type = string
description = "AWS region"
}
variable "availability_zones" {
type = list(string)
description = "Availability zone IDs"
}
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 "cloudwatch_metric_alarms_enabled" {
type = bool
description = "Boolean flag to enable/disable CloudWatch metrics alarms"
}
variable "sg_name" {
type = string
default = ""
description = "Name to give to created security group"
}