-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
55 lines (45 loc) · 1.35 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
variable "environment" {
description = "Deployment environment, i.e. dev/stage/prod, etc"
type = string
}
variable "vpc_id" {
description = "ID of the VPC that will contain the provisioned resources"
type = string
}
variable "elasticache_private_subnets" {
description = "IDs of private subnets within the VPC"
type = list(string)
}
variable "elasticache_allow_from_sg" {
description = "Security group from which connections to ElastiCache will be allowed"
type = string
}
variable "elasticache_engine" {
description = "Engine type for Elasticache cluster"
type = string
}
variable "elasticache_engine_version" {
description = "Version number for Elasticache engine"
type = string
}
variable "elasticache_instance_type" {
description = "Elasticache instance type"
type = string
}
variable "elasticache_param_group_name" {
description = "Name for the Elasticache cluster parameter group"
type = string
}
variable "elasticache_num_cache_nodes" {
description = "Number of nodes in the Elasticache cluster"
type = number
}
variable "elasticache_transit_encryption" {
description = "Enable transit encryption for ElastiCache"
type = bool
}
variable "elasticache_auth_token" {
description = "Auth token for ElastiCache"
type = string
default = null
}