mrparkers / terraform-provider-keycloak

Terraform provider for Keycloak
https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs
MIT License
607 stars 295 forks source link

Missing saml idp fields #832

Open alex88 opened 1 year ago

alex88 commented 1 year ago

Hi there,

I might be wrong but is there a way to set the saml idp allowCreate and idpEntityId fields?

Thank you

charlielee commented 1 year ago

I have also come across this issue. However you can configure these fields manually if you add an extra_config block to your keycloak_saml_identity_provider resource, eg:

  extra_config = {
    "allowCreate" = true
    "idpEntityId" = "https://idp.example.org/idp"
  }