forked from catalin/fukuops
feat: add authentik-{proxy,oidc} module
This commit is contained in:
parent
e3baa8c170
commit
9d6464a7af
5 changed files with 118 additions and 12 deletions
54
tofu/modules/authentik-proxy/vars.tf
Normal file
54
tofu/modules/authentik-proxy/vars.tf
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
variable "app_name" {
|
||||
description = "App name"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "app_slug" {
|
||||
description = "App slug, a human-readable URL identifier, e.g.: Google -> google"
|
||||
type = string
|
||||
}
|
||||
|
||||
|
||||
variable "app_access_group_id" {
|
||||
description = "ID of a group which will have access to the app"
|
||||
type = string
|
||||
}
|
||||
|
||||
|
||||
variable "open_in_new_tab" {
|
||||
type = bool
|
||||
description = "Open apps in a new tab"
|
||||
default = true
|
||||
}
|
||||
|
||||
variable "app_icon" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "app_description" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "app_publisher" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
variable "app_url" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
||||
|
||||
|
||||
variable "internal_host" {
|
||||
description = "Internal, upstream host authentik will proxy to"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "internal_host_ssl_validation" {
|
||||
description = "Validate SSL certificate of the upstream servers"
|
||||
type = bool
|
||||
default = false
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue