-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
93 lines (85 loc) · 2.32 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
82
83
84
85
86
87
88
89
90
91
92
93
variable "equinix_metal_project_id" {
description = "the project ID for the Equinix Metal project"
type = string
default = ""
}
variable "equinix_metal_auth_token" {
description = "the api auth for the Equinix Metal, for virtual ip assignment"
type = string
default = ""
}
variable "rfc2136_nameserver" {
description = "the DNS zone"
type = string
default = ""
}
variable "rfc2136_tsig_keyname" {
description = "the tsig key name for talking to a RFC2136 compliant DNS server"
type = string
default = ""
}
variable "rfc2136_tsig_key" {
description = "the tsig key for talking to a RFC2136 compliant DNS server"
type = string
default = ""
}
variable "github_token" {
sensitive = true
type = string
description = "a PAT for GitHub auth"
}
variable "github_org" {
type = string
description = "the org for the Flux repo (ii)"
default = "ii"
}
variable "github_repository" {
type = string
description = "the Flux repo name (infra)"
default = "infra"
}
variable "pdns_api_key" {
description = "the API key for PowerDNS"
type = string
default = ""
}
variable "pdns_host" {
description = "the host address for PowerDNS"
type = string
default = ""
}
variable "acme_email_address" {
description = "the email address for LetsEncrypt"
type = string
default = ""
}
variable "authentik_github_oauth_app_id" {
description = "Github OAUTH app id"
type = string
default = ""
}
variable "authentik_github_oauth_app_secret" {
description = "Github OAUTH app secrets"
type = string
default = ""
}
variable "coder_oauth2_github_client_id" {
description = "Authenticating Coder directly to github (bypassing authentik)"
type = string
default = ""
}
variable "coder_oauth2_github_client_secret" {
description = "Authenticating Coder directly to github (bypassing authentik)"
type = string
default = ""
}
variable "coder_gitauth_0_client_id" {
description = "Retrieving a RW token to save prs / commits etc in workspaces"
type = string
default = ""
}
variable "coder_gitauth_0_client_secret" {
description = "Retrieving a RW token to save prs / commits etc in workspaces"
type = string
default = ""
}