-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables-redis.tf
43 lines (40 loc) · 955 Bytes
/
variables-redis.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
variable "enable_ha_redis" {
type = bool
default = false
}
###########################
## HAProxy Configuration ##
###########################
variable "haproxy_image_tag" {
type = string
description = "Defines which docker image tag to use for HAProxy"
default = "2.6.0-alpine"
}
variable "haproxy_image_name" {
type = string
description = ""
default = "haproxy"
}
variable "haproxy_image_repository" {
type = string
description = ""
default = "docker.io"
}
#########################
## Redis Configuration ##
#########################
variable "redis_image_tag" {
type = string
description = "The version of the Redis Docker image to deploy."
default = "7.0.2-alpine"
}
variable "redis_image_name" {
type = string
description = ""
default = "redis"
}
variable "redis_image_repository" {
type = string
description = ""
default = "docker.io"
}