infra/tf/providers.tf

25 lines
451 B
Terraform
Raw Normal View History

data "terraform_remote_state" "kube" {
backend = "kubernetes"
config = {
secret_suffix = "state"
namespace = "tofu"
config_path = "../.kubeconfig"
}
}
2024-09-10 17:36:12 +00:00
provider "vault" {}
terraform {
required_providers {
keycloak = {
source = "mrparkers/keycloak"
version = ">= 4.0.0"
}
}
}
provider "keycloak" {
realm = "dev.janky.solutions"
url = "https://auth.janky.solutions"
}