Fix linter, improve rabbit

This commit is contained in:
xmo
2024-08-26 21:13:24 +02:00
parent 9f12af60bc
commit 5299267f47
13 changed files with 100 additions and 31 deletions
+1 -1
View File
@@ -38,7 +38,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.redirect_path!=""?"${var.dns_name}/${var.redirect_path}":"${var.dns_name}"}"
"https://${var.redirect_path != "" ? "${var.dns_name}/${var.redirect_path}" : var.dns_name}"
]
}