mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2026-03-26 21:33:03 +00:00
Merge pull request #268 from RanabirChakraborty/AMW-384
keycloak_realm: change url variables to defaults
This commit is contained in:
@@ -118,3 +118,7 @@ keycloak_no_log: true
|
|||||||
|
|
||||||
### logging configuration
|
### logging configuration
|
||||||
keycloak_log_target: /var/log/keycloak
|
keycloak_log_target: /var/log/keycloak
|
||||||
|
|
||||||
|
# locations
|
||||||
|
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port + keycloak_jboss_port_offset }}"
|
||||||
|
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + keycloak_jboss_port_offset }}"
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
# internal variables below
|
# internal variables below
|
||||||
|
|
||||||
# locations
|
|
||||||
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port + keycloak_jboss_port_offset }}"
|
|
||||||
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + keycloak_jboss_port_offset }}"
|
|
||||||
|
|
||||||
|
|
||||||
keycloak:
|
keycloak:
|
||||||
|
|||||||
@@ -54,3 +54,7 @@ keycloak_client_users: []
|
|||||||
|
|
||||||
### List of Keycloak User Federation
|
### List of Keycloak User Federation
|
||||||
keycloak_user_federation: []
|
keycloak_user_federation: []
|
||||||
|
|
||||||
|
# other settings
|
||||||
|
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
||||||
|
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
||||||
|
|||||||
@@ -3,7 +3,3 @@
|
|||||||
|
|
||||||
# name of the realm to create, this is a required variable
|
# name of the realm to create, this is a required variable
|
||||||
keycloak_realm:
|
keycloak_realm:
|
||||||
|
|
||||||
# other settings
|
|
||||||
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
|
||||||
keycloak_management_url: "http://{{ keycloak_host }}:{{ keycloak_management_http_port + (keycloak_jboss_port_offset | default(0)) }}"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user