This commit is contained in:
2023-10-29 09:07:40 +01:00
parent 47a6fc61fa
commit ff690d420a
5 changed files with 67 additions and 35 deletions

View File

@@ -21,6 +21,7 @@ resource "authentik_application" "prj_app" {
slug = "${var.component}-${var.instance}"
group = var.app-group
protocol_provider = var.protocol_provider
backchannel_providers = var.backchannel_providers
meta_launch_url = format("https://%s", var.dns-name)
meta_icon = format("https://%s/%s", var.dns-name, var.icon)
}

View File

@@ -12,6 +12,7 @@ variable "app-group" {
}
variable "protocol_provider" {
type = number
default = null
}
variable "dns-name" {
type = string
@@ -20,3 +21,8 @@ variable "sub-groups" {
type = list(string)
default = []
}
variable "backchannel_providers" {
type = list(number)
default = null
}