Allow to configure admin_url

This commit is contained in:
Guido Grazioli 2023-05-26 16:31:13 +02:00
parent cca20a067d
commit aaae1d1129
7 changed files with 17 additions and 0 deletions

View file

@ -117,6 +117,7 @@ Role Defaults
|`keycloak_frontend_url` | frontend URL for keycloak endpoint | `http://localhost:8080/auth/` | |`keycloak_frontend_url` | frontend URL for keycloak endpoint | `http://localhost:8080/auth/` |
Role Variables Role Variables
-------------- --------------
@ -161,6 +162,7 @@ The following variables are _optional_:
| Variable | Description | | Variable | Description |
|:---------|:------------| |:---------|:------------|
|`keycloak_db_valid_conn_sql` | Override the default database connection validation query sql | |`keycloak_db_valid_conn_sql` | Override the default database connection validation query sql |
|`keycloak_admin_url` | Override the default administration endpoint URL |
Example Playbook Example Playbook

View file

@ -73,6 +73,7 @@ keycloak_modcluster_urls:
### keycloak frontend url ### keycloak frontend url
keycloak_frontend_url: http://localhost:8080/auth/ keycloak_frontend_url: http://localhost:8080/auth/
keycloak_frontend_url_force: False keycloak_frontend_url_force: False
keycloak_admin_url:
### infinispan remote caches access (hotrod) ### infinispan remote caches access (hotrod)
keycloak_infinispan_user: supervisor keycloak_infinispan_user: supervisor

View file

@ -334,6 +334,10 @@ argument_specs:
required: False required: False
description: "Override the default database connection validation query sql" description: "Override the default database connection validation query sql"
type: "str" type: "str"
keycloak_admin_url:
required: False
description: "Override the default administration endpoint URL"
type: "str"
downstream: downstream:
options: options:
sso_version: sso_version:

View file

@ -580,6 +580,9 @@
<properties> <properties>
<property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/> <property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/>
<property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/> <property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/>
{% if keycloak_modcluster.admin_url | length > 0 %}
<property name="adminUrl" value="{{ keycloak_modcluster.admin_url }}" />
{% endif %}
</properties> </properties>
</provider> </provider>
</spi> </spi>

View file

@ -618,6 +618,9 @@
<properties> <properties>
<property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/> <property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/>
<property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/> <property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/>
{% if keycloak_modcluster.admin_url | length > 0 %}
<property name="adminUrl" value="{{ keycloak_modcluster.admin_url }}" />
{% endif %}
</properties> </properties>
</provider> </provider>
</spi> </spi>

View file

@ -524,6 +524,9 @@
<properties> <properties>
<property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/> <property name="frontendUrl" value="{{ keycloak_modcluster.frontend_url }}"/>
<property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/> <property name="forceBackendUrlToFrontendUrl" value="{{ keycloak_modcluster.force_frontend_url }}"/>
{% if keycloak_modcluster.admin_url | length > 0 %}
<property name="adminUrl" value="{{ keycloak_modcluster.admin_url }}" />
{% endif %}
</properties> </properties>
</provider> </provider>
</spi> </spi>

View file

@ -88,6 +88,7 @@ keycloak_modcluster:
reverse_proxy_urls: "{{ keycloak_modcluster_urls }}" reverse_proxy_urls: "{{ keycloak_modcluster_urls }}"
frontend_url: "{{ keycloak_frontend_url }}" frontend_url: "{{ keycloak_frontend_url }}"
force_frontend_url: "{{ keycloak_frontend_url_force }}" force_frontend_url: "{{ keycloak_frontend_url_force }}"
admin_url: "{{ keycloak_admin_url | default('') }}"
# infinispan # infinispan
keycloak_remotecache: keycloak_remotecache: