feat: add argo workflows
This commit is contained in:
parent
8994143831
commit
2c7de2fb4c
11 changed files with 254 additions and 0 deletions
40
tofu/modules/authentik/vars.tf
Normal file
40
tofu/modules/authentik/vars.tf
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
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 "client_id" {
|
||||
description = "Client ID"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "client_secret" {
|
||||
description = "Client secret"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "app_access_group_id" {
|
||||
description = "ID of a group which will have access to the app"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "redirect_uris" {
|
||||
description = "List of URIs allowed to redirect to"
|
||||
type = list(string)
|
||||
}
|
||||
|
||||
variable "sub_mode" {
|
||||
type = string
|
||||
default = "user_username"
|
||||
}
|
||||
|
||||
variable "oidc_signing_key" {
|
||||
type = string
|
||||
description = "Signing key"
|
||||
default = "c4ff5edf-3cad-4093-9326-44fea088e670"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue