fukuops/tofu/modules/authentik-app/vars.tf
cătălin af91d696f7
Some checks failed
ci/woodpecker/push/tofu Pipeline failed
ci/woodpecker/push/fmt Pipeline failed
wip
2026-04-08 19:28:50 +02:00

40 lines
693 B
HCL

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 = ""
}