Merge pull request #302 from tinsjourney/fix_federation_provider_type

keycloak_realm: federation default provider type should be a string
This commit is contained in:
Guido Grazioli 2025-07-01 17:50:34 +02:00 committed by GitHub
commit 55185a1439
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,7 +46,7 @@
name: "{{ item.name }}"
state: present
provider_id: "{{ item.provider_id }}"
provider_type: "{{ item.provider_type | default(org.keycloak.storage.UserStorageProvider) }}"
provider_type: "{{ item.provider_type | default('org.keycloak.storage.UserStorageProvider') }}"
config: "{{ item.config }}"
mappers: "{{ item.mappers | default(omit) }}"
no_log: "{{ keycloak_no_log | default('True') }}"