terraform/authentik/provider.tf

20 lines
371 B
Terraform
Raw Normal View History

2024-06-27 10:09:49 +02:00
terraform {
2024-06-27 10:26:36 +02:00
backend "kubernetes" {
secret_suffix = "authentik-state"
namespace = "authentik"
}
2024-06-27 10:09:49 +02:00
required_providers {
kubernetes = {
2024-08-04 16:16:53 +02:00
source = "hashicorp/kubernetes"
2024-06-27 10:09:49 +02:00
version = "2.31.0"
}
authentik = {
2024-08-04 16:16:53 +02:00
source = "goauthentik/authentik"
2025-02-19 10:59:18 +00:00
version = "2024.12.0"
2024-06-27 10:09:49 +02:00
}
}
}
provider "authentik" {}
provider "kubernetes" {
}