fix: add missing default
parent
f74d504b53
commit
9cafd431fb
|
@ -164,17 +164,17 @@ argument_specs:
|
||||||
keycloak_ha_enabled:
|
keycloak_ha_enabled:
|
||||||
# line 46 of keycloak/defaults/main.yml
|
# line 46 of keycloak/defaults/main.yml
|
||||||
default: false
|
default: false
|
||||||
description: "TODO document argument"
|
description: "Enable auto configuration for database backend, clustering and remote caches on infinispan"
|
||||||
type: "bool"
|
type: "bool"
|
||||||
keycloak_db_enabled:
|
keycloak_db_enabled:
|
||||||
# line 48 of keycloak/defaults/main.yml
|
# line 48 of keycloak/defaults/main.yml
|
||||||
default: "{{ True if keycloak_ha_enabled else False }}"
|
default: "{{ True if keycloak_ha_enabled else False }}"
|
||||||
description: "TODO document argument"
|
description: "Enable auto configuration for database backend"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_admin_user:
|
keycloak_admin_user:
|
||||||
# line 51 of keycloak/defaults/main.yml
|
# line 51 of keycloak/defaults/main.yml
|
||||||
default: "admin"
|
default: "admin"
|
||||||
description: "TODO document argument"
|
description: "Administration console user account"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_auth_realm:
|
keycloak_auth_realm:
|
||||||
# line 52 of keycloak/defaults/main.yml
|
# line 52 of keycloak/defaults/main.yml
|
||||||
|
|
|
@ -3,16 +3,16 @@
|
||||||
keycloak_host: localhost
|
keycloak_host: localhost
|
||||||
keycloak_http_port: 8080
|
keycloak_http_port: 8080
|
||||||
keycloak_https_port: 8443
|
keycloak_https_port: 8443
|
||||||
|
keycloak_management_http_port: 9990
|
||||||
|
keycloak_rhsso_enable: False
|
||||||
|
|
||||||
### Keycloak administration console user
|
### Keycloak administration console user
|
||||||
keycloak_admin_user: admin
|
keycloak_admin_user: admin
|
||||||
keycloak_auth_realm: master
|
keycloak_auth_realm: master
|
||||||
keycloak_auth_client: admin-cli
|
keycloak_auth_client: admin-cli
|
||||||
|
|
||||||
### List of Keycloak User Federation
|
|
||||||
keycloak_user_federation: []
|
|
||||||
|
|
||||||
### Keycloak realms, clients, roles
|
### Keycloak realms, clients, roles, federation
|
||||||
# list of clients to create in the realm
|
# list of clients to create in the realm
|
||||||
#
|
#
|
||||||
# Refer to the playbook for a comprehensive example.
|
# Refer to the playbook for a comprehensive example.
|
||||||
|
@ -47,3 +47,6 @@ keycloak_client_web_origins: '+'
|
||||||
# where each client_role has the form:
|
# where each client_role has the form:
|
||||||
# { client: '', role: '', realm: '' }
|
# { client: '', role: '', realm: '' }
|
||||||
keycloak_client_users: []
|
keycloak_client_users: []
|
||||||
|
|
||||||
|
### List of Keycloak User Federation
|
||||||
|
keycloak_user_federation: []
|
||||||
|
|
|
@ -16,26 +16,31 @@ argument_specs:
|
||||||
default: 8443
|
default: 8443
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "int"
|
type: "int"
|
||||||
|
keycloak_management_http_port:
|
||||||
|
# line 6 of keycloak_realm/defaults/main.yml
|
||||||
|
default: 9990
|
||||||
|
description: "TODO document argument"
|
||||||
|
type: "int"
|
||||||
|
keycloak_rhsso_enable:
|
||||||
|
# line 7 of keycloak_realm/defaults/main.yml
|
||||||
|
default: false
|
||||||
|
description: "TODO document argument"
|
||||||
|
type: "bool"
|
||||||
keycloak_admin_user:
|
keycloak_admin_user:
|
||||||
# line 8 of keycloak_realm/defaults/main.yml
|
# line 10 of keycloak_realm/defaults/main.yml
|
||||||
default: "admin"
|
default: "admin"
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_auth_realm:
|
keycloak_auth_realm:
|
||||||
# line 9 of keycloak_realm/defaults/main.yml
|
# line 11 of keycloak_realm/defaults/main.yml
|
||||||
default: "master"
|
default: "master"
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_auth_client:
|
keycloak_auth_client:
|
||||||
# line 10 of keycloak_realm/defaults/main.yml
|
# line 12 of keycloak_realm/defaults/main.yml
|
||||||
default: "admin-cli"
|
default: "admin-cli"
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_user_federation:
|
|
||||||
# line 13 of keycloak_realm/defaults/main.yml
|
|
||||||
default: "[]"
|
|
||||||
description: "TODO document argument"
|
|
||||||
type: "list"
|
|
||||||
keycloak_client_default_roles:
|
keycloak_client_default_roles:
|
||||||
# line 36 of keycloak_realm/defaults/main.yml
|
# line 36 of keycloak_realm/defaults/main.yml
|
||||||
default: "[]"
|
default: "[]"
|
||||||
|
@ -56,6 +61,11 @@ argument_specs:
|
||||||
default: "[]"
|
default: "[]"
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "list"
|
type: "list"
|
||||||
|
keycloak_user_federation:
|
||||||
|
# line 52 of keycloak_realm/defaults/main.yml
|
||||||
|
default: "[]"
|
||||||
|
description: "TODO document argument"
|
||||||
|
type: "list"
|
||||||
keycloak_admin_password:
|
keycloak_admin_password:
|
||||||
# line 5 of keycloak_realm/vars/main.yml
|
# line 5 of keycloak_realm/vars/main.yml
|
||||||
required: true
|
required: true
|
||||||
|
@ -81,8 +91,3 @@ argument_specs:
|
||||||
default: "http://{{ keycloak_host }}:{{ keycloak_management_http_port }}"
|
default: "http://{{ keycloak_host }}:{{ keycloak_management_http_port }}"
|
||||||
description: "TODO document argument"
|
description: "TODO document argument"
|
||||||
type: "str"
|
type: "str"
|
||||||
keycloak_rhsso_enable:
|
|
||||||
# line 16 of keycloak_realm/vars/main.yml
|
|
||||||
default: false
|
|
||||||
description: "TODO document argument"
|
|
||||||
type: "bool"
|
|
||||||
|
|
|
@ -13,4 +13,3 @@ keycloak_clients:
|
||||||
# other settings
|
# other settings
|
||||||
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port }}"
|
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port }}"
|
||||||
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port }}"
|
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port }}"
|
||||||
keycloak_rhsso_enable: False
|
|
Loading…
Reference in New Issue