-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvars.tf
38 lines (32 loc) · 978 Bytes
/
vars.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
variable "media_configmap" {
description = "The ConfigMap holding the static media that Authentik will use"
type = string
default = "media"
}
variable "authentik_namespace" {
description = "The kubernetes namespace where Authentik is deployed"
type = string
default = "authentik"
}
variable "authentik_domain" {
description = "The domain name of the Authentik instance"
type = string
}
variable "organization_name" {
description = "The name of your organization"
type = string
}
variable "acs_url" {
description = "The ACS url provided by GitHub when configuring an external identity provider"
type = string
}
variable "ui_description" {
description = "The description to display in the Authentik web dashboard"
type = string
default = "GitHub"
}
variable "extra_allowed_groups" {
description = "Additional groups that can access GitHub"
type = set(string)
default = []
}