Files
homelab/terraform/keycloak/providers.tf
T
Ultradesu 9622b7d7bc
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 9s
Auto-update README / Generate README and Create MR (push) Successful in 10s
Deployed rsauth2-proxy
2026-05-05 14:56:56 +01:00

16 lines
299 B
Terraform

terraform {
required_providers {
keycloak = {
source = "keycloak/keycloak"
version = ">= 5.0.0"
}
}
}
provider "keycloak" {
url = var.keycloak_url
base_path = "/auth"
client_id = var.keycloak_client_id
client_secret = var.keycloak_client_secret
}