feat: add pulse
This commit is contained in:
parent
7a4f608d2e
commit
aa05c20e2d
9 changed files with 195 additions and 46 deletions
|
|
@ -260,3 +260,15 @@ module "jellyseerr" {
|
|||
app_description = "Solicita series, animes y pelis para ser añadidas automáticamente a Jellyfin"
|
||||
app_access_group_id = authentik_group.arrs.id
|
||||
}
|
||||
|
||||
module "pulse" {
|
||||
source = "../modules/authentik-oidc"
|
||||
app_name = "Pulse"
|
||||
app_slug = "pulse"
|
||||
app_url = "https://pulse.fukurokuju.dev"
|
||||
client_id = var.pulse_client_id
|
||||
client_secret = var.pulse_client_secret
|
||||
app_icon = "https://pulse.fukurokuju.dev/logo.svg"
|
||||
redirect_uris = [{ matching_mode = "strict", url = "https://pulse.fukurokuju.dev/api/oidc/callback" }]
|
||||
app_access_group_id = authentik_group.admins.id
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,3 +16,5 @@ TF_VAR_tandoor_client_id=
|
|||
TF_VAR_tandoor_client_secret=
|
||||
TF_VAR_ganymede_client_id=
|
||||
TF_VAR_ganymede_client_secret=
|
||||
TF_VAR_pulse_client_id=
|
||||
TF_VAR_pulse_client_secret=
|
||||
|
|
|
|||
|
|
@ -78,3 +78,13 @@ variable "ganymede_client_secret" {
|
|||
description = "Ganymede client secret"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "pulse_client_id" {
|
||||
description = "Pulse client ID"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "pulse_client_secret" {
|
||||
description = "Pulse client secret"
|
||||
type = string
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue