Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 690 Bytes

File metadata and controls

17 lines (11 loc) · 690 Bytes

Terraform Module for Vault Keycloak Terraform Provider

Support module for our keycloak vault secret backend and its support terraform provider Serviceware/vaultkeycloak. It provisions keycloak with the required client id and role so vault can talk to the this realm and access the client secrets.

module "keycloak_vault_config" {

  source = "Serviceware/vaultkeycloak/keycloak-client"
  realm           = "my-realm"
  vault_client_id = "vault"

  vault_client_secret = "vault123" //optional, usually generated by keycloak it self
}