feat: add firezone tofu app

This commit is contained in:
cătălin 2024-03-24 17:31:30 +01:00
commit dc6fc316e7
No known key found for this signature in database
5 changed files with 61 additions and 8 deletions

View file

@ -29,7 +29,7 @@ variable "redirect_uris" {
}
variable "sub_mode" {
type = string
type = string
default = "user_username"
}
@ -40,11 +40,26 @@ variable "oidc_signing_key" {
}
variable "open_in_new_tab" {
type = bool
type = bool
description = "Open apps in a new tab"
default = true
default = true
}
variable "app_icon" {
type = string
}
type = string
default = ""
}
variable "app_description" {
type = string
default = ""
}
variable "app_publisher" {
type = string
default = ""
}
variable "app_url" {
type = string
default = ""
}