aboutsummaryrefslogtreecommitdiff
path: root/terraform/variables.tf
blob: 00b96c897109e2d9b68246d1d9bff4bd6368888d (plain)
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
variable "minio_password" {
  type        = string
  sensitive   = true
  description = "Secret key for minio"
}
variable "sites_password" {
  type        = string
  sensitive   = true
  description = "Secret key for sites"
}
variable "rproxy_password" {
  type        = string
  sensitive   = true
  description = "Secret key for rproxy"
}
variable "monitoring_password" {
  type        = string
  sensitive   = true
  description = "Secret key for monitoring"
}
variable "nc_kumar_password" {
  type        = string
  sensitive   = true
  description = "Secret key for nc_kumar"
}
variable "plex_password" {
  type        = string
  sensitive   = true
  description = "Secret key for plex"
}
variable "vault_password" {
  type        = string
  sensitive   = true
  description = "Secret key for vault"
}
variable "torrents_password" {
  type        = string
  sensitive   = true
  description = "Secret key for torrents"
}
variable "med_dl_password" {
  type        = string
  sensitive   = true
  description = "Secret key for med_dl"
}