This commit is contained in:
seb
2023-10-19 13:07:09 +02:00
parent fb3e9f56eb
commit a6ae543cfe
40 changed files with 963 additions and 1080 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ resource "authentik_provider_oauth2" "oauth2" {
signing_key = data.authentik_certificate_key_pair.ca.id
property_mappings = data.authentik_scope_mapping.oauth2.ids
redirect_uris = [
"https://${var.dns-name}/"
"https://${var.dns-name}/${var.redirect-path}"
]
}
+4
View File
@@ -13,3 +13,7 @@ variable "labels" {
variable "dns-name" {
type = string
}
variable "redirect-path" {
type = string
default = ""
}