chore(deps): update terraform authentik to v2024.10.2
Some checks failed
checks / pre-commit (push) Failing after 5s
checks / k8s (push) Failing after 2s
checks / tflint (push) Failing after 2s
Kaniko deployments / nextcloud (push) Failing after 3s
OpenTofu deployments / authentik (push) Failing after 2s
OpenTofu deployments / adguard (push) Failing after 2s

This commit is contained in:
cătălin 2024-11-26 20:06:33 +01:00
commit 96843e24b9
No known key found for this signature in database
5 changed files with 64 additions and 53 deletions

View file

@ -3,12 +3,12 @@ terraform {
required_providers {
authentik = {
source = "goauthentik/authentik"
version = "2024.10.1"
version = "2024.10.2"
}
}
}
data "authentik_flow" "default-authorization-flow" {
data "authentik_flow" "default-authorization-implicit-flow" {
slug = "default-provider-authorization-implicit-consent"
}
@ -35,9 +35,9 @@ resource "authentik_provider_oauth2" "provider_oidc" {
client_id = var.client_id
client_secret = var.client_secret
client_type = var.client_type
authorization_flow = data.authentik_flow.default-authorization-flow.id
authorization_flow = data.authentik_flow.default-authorization-implicit-flow.id
authentication_flow = data.authentik_flow.default-authentication-flow.id
redirect_uris = var.redirect_uris
allowed_redirect_uris = var.redirect_uris
property_mappings = data.authentik_property_mapping_provider_scope.default-scopes.ids
sub_mode = var.sub_mode
signing_key = var.oidc_signing_key

View file

@ -35,7 +35,7 @@ variable "app_access_group_id" {
variable "redirect_uris" {
description = "List of URIs allowed to redirect to"
type = list(string)
type = list(map(string))
}
variable "sub_mode" {

View file

@ -3,7 +3,7 @@ terraform {
required_providers {
authentik = {
source = "goauthentik/authentik"
version = "2024.10.1"
version = "2024.10.2"
}
}
}