This commit is contained in:
2024-01-26 12:59:14 +01:00
parent ebbf704f85
commit 43a783eb91
11 changed files with 401 additions and 402 deletions

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}/${var.redirect-path}"
"https://${var.dns_name}/${var.redirect_path}"
]
}

View File

@@ -13,7 +13,7 @@ variable "labels" {
variable "dns_name" {
type = string
}
variable "redirect-path" {
variable "redirect_path" {
type = string
default = ""
}