-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
59 lines (48 loc) · 1.19 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
variable "domain" {
type = "string"
default = "francisalexander.in"
}
variable "mount_point" {
type = "string"
default = "/home/torque/thanos/"
}
variable "do_token" {
type = "string"
}
variable "email" {
type = "string"
default = "helofrancis@gmail.com"
}
variable "gitea_dbname" {
type = "string"
default = "gitea"
}
variable "gitea_db_username" {
type = "string"
default = "gitea"
}
variable "gitea_db_passphrase" {
type = "string"
default = "gitea"
}
variable "postgres_username" {
type = "string"
default = "admin"
}
variable "postgres_password" {
type = "string"
default = "admin"
}
variable "traefik-common-labels" {
type = "map"
default = {
"traefik.frontend.passHostHeader" = "true"
"traefik.protocol" = "http"
"traefik.enable" = "true"
"traefik.frontend.headers.SSLTemporaryRedirect" = "true"
"traefik.frontend.headers.STSSeconds" = "2592000"
"traefik.frontend.headers.STSIncludeSubdomains" = "false"
"traefik.frontend.headers.contentTypeNosniff" = "true"
"traefik.frontend.headers.browserXSSFilter" = "true"
}
}