-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
81 lines (64 loc) · 1.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
variable "resource_group_name" {
description = "resource group name"
default = ""
}
variable "resource_group_location" {
description = "resource group location"
default = ""
}
variable "redis_static_ip" {
default = ""
type = "string"
}
variable "redis_subnet_id" {
default = ""
type = "string"
}
variable "redis_name" {
type = "string"
default = ""
}
variable "redis_sku" {
default = "Basic"
}
variable "redis_family" {
default = "C"
}
variable "sku_capacity" {
default = 0
}
variable "aof_backup_enabled" {
default = false
}
variable "enable_non_ssl_port" {
default = false
}
variable "minimum_tls_version" {
default = "1.2"
}
variable "aof_storage_connection_string_0" {
default = ""
type = "string"
}
variable "aof_storage_connection_string_1" {
default = ""
type = "string"
}
variable "patch_day_of_week" {
default = "monday"
}
variable "patch_start_hour_utc" {
default = "1"
}
variable "tag_environment" {
description = "Tag: Cluster Environment"
default = ""
}
variable "tag_region" {
description = "Tag: Cluster Environment"
default = ""
}
variable "tag_product" {
description = "Tag: Cluster Product Lensferry/Nexus"
default = ""
}