-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
62 lines (49 loc) · 1.53 KB
/
variables.tf
File metadata and controls
62 lines (49 loc) · 1.53 KB
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
variable "product" {}
variable "component" {}
variable "location" {
default = "UK South"
}
variable "env" {}
variable "subscription" {}
variable "common_tags" {
type = map(string)
}
variable "jenkins_AAD_objectId" {
description = "(Required) The Azure AD object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies."
}
variable "businessArea" {
default = "sds"
}
variable "family" {
default = "C"
description = "The SKU family/pricing group to use. Valid values are `C` (for Basic/Standard SKU family) and `P` (for Premium). Use P for higher availability, but beware it costs a lot more."
}
variable "sku_name" {
default = "Basic"
description = "The SKU of Redis to use. Possible values are `Basic`, `Standard` and `Premium`."
}
variable "capacity" {
default = "1"
description = "The size of the Redis cache to deploy. Valid values are 1, 2, 3, 4, 5"
}
variable "aks_subscription_id" {}
variable "sftp_users" {
type = map(object({
home_directory = optional(string, "outbound")
permissions = object({
read = optional(bool, true)
create = optional(bool, true)
list = optional(bool, true)
write = optional(bool, true)
delete = optional(bool, true)
})
}))
description = "Map of SFTP users to create in the storage account."
default = {}
}
variable "developers_group" {
default = "DTS SDS Developers"
}
variable "service_bus_sku" {
default = "Standard"
}