Skip to content

Commit

Permalink
cleanup vars
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Nov 7, 2023
1 parent 8eb5185 commit c8f968a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
10 changes: 5 additions & 5 deletions roles/keycloak_quarkus/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ keycloak_quarkus_configure_firewalld: False

### administrator console password
keycloak_quarkus_admin_user: admin
keycloak_quarkus_admin_pass: ''
keycloak_quarkus_admin_pass:
keycloak_quarkus_master_realm: master

### Configuration settings
keycloak_quarkus_bind_address: 0.0.0.0
keycloak_quarkus_host: localhost
keycloak_quarkus_port: -1
keycloak_quarkus_path: ''
keycloak_quarkus_path:
keycloak_quarkus_http_enabled: True
keycloak_quarkus_http_port: 8080
keycloak_quarkus_https_port: 8443
Expand All @@ -48,11 +48,11 @@ keycloak_quarkus_ha_enabled: False
keycloak_quarkus_db_enabled: "{{ True if keycloak_quarkus_ha_enabled else False }}"

### keycloak frontend url
keycloak_quarkus_frontend_url: ''
keycloak_quarkus_admin_url: ''
keycloak_quarkus_frontend_url:
keycloak_quarkus_admin_url:

### path under the application is exposed (set to `auth` for retrocompatibility with pre-quarkus releases)
keycloak_quarkus_http_relative_path: ''
keycloak_quarkus_http_relative_path:

# proxy address forwarding mode if the server is behind a reverse proxy. [none, edge, reencrypt, passthrough]
keycloak_quarkus_proxy_mode: edge
Expand Down
14 changes: 6 additions & 8 deletions roles/keycloak_quarkus/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,11 @@ argument_specs:
description: "Ensure firewalld is running and configure keycloak ports"
type: "bool"
keycloak_quarkus_admin_user:
# line 22 of defaults/main.yml
default: "admin"
description: "Administration console user account"
type: "str"
keycloak_quarkus_admin_pass:
# line 23 of defaults/main.yml
default: ""
required: true
description: "Password of console admin account"
type: "str"
keycloak_quarkus_master_realm:
Expand All @@ -98,13 +96,13 @@ argument_specs:
description: "The port used by the proxy when exposing the hostname"
type: "int"
keycloak_quarkus_path:
default: ""
required: false
description: "This should be set if proxy uses a different context-path for Keycloak"
type: "str"
keycloak_quarkus_http_enabled:
default: true
description: "Enable listener on HTTP port"
type: "bool"
type: "bool"
keycloak_quarkus_http_port:
# line 29 of defaults/main.yml
default: 8080
Expand Down Expand Up @@ -153,16 +151,16 @@ argument_specs:
description: "Enable auto configuration for database backend"
type: "str"
keycloak_quarkus_http_relative_path:
default: "auth"
required: false
description: "Service context path"
type: "str"
keycloak_quarkus_frontend_url:
required: false
description: "Service public URL"
default: ""
type: "str"
keycloak_quarkus_admin_url:
required: false
description: "Service URL for the admin console"
default: ""
type: "str"
keycloak_quarkus_metrics_enabled:
# line 43 of defaults/main.yml
Expand Down

0 comments on commit c8f968a

Please sign in to comment.