-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
102 lines (102 loc) · 2.31 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
94
95
96
97
98
99
100
101
102
variable "compartment_ocid" {
type = string
sensitive = true
}
variable "tenancy_ocid" {
type = string
sensitive = true
}
variable "user_ocid" {
type = string
sensitive = true
}
variable "fingerprint" {
type = string
sensitive = true
}
variable "private_key_path" {
type = string
default = "~/.oci/oci_main_terraform.pem"
sensitive = true
}
variable "region" {
type = string
default = ""
}
variable "github_org" {
type = string
default = "sharingio"
}
variable "github_repository" {
type = string
default = "infra"
}
variable "github_token" {
type = string
default = "infra"
sensitive = true
}
variable "rfc2136_nameserver" {
type = string
sensitive = true
}
variable "rfc2136_tsig_keyname" {
type = string
sensitive = true
}
variable "rfc2136_tsig_key" {
type = string
sensitive = true
}
variable "pdns_host" {
type = string
sensitive = true
}
variable "pdns_api_key" {
type = string
sensitive = true
}
variable "domain" {
type = string
default = "sharing.io"
}
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 = ""
}
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_version" {
description = "Version of coder from https://github.com/coder/coder/releases/"
type = string
default = "v2.16.0"
}
variable "authentik_version" {
description = "Version of authentik from https://github.com/goauthentik/authentik/releases/"
type = string
default = "2024.4.0"
}