apply review suggestions

This commit is contained in:
Giovanni Toraldo 2023-09-19 17:05:00 +02:00
parent 38ff519624
commit f0f90b8930
No known key found for this signature in database
GPG key ID: 535A83AB8FE360A7
3 changed files with 6 additions and 6 deletions

View file

@ -22,8 +22,8 @@ Role Defaults
|`keycloak_quarkus_db_enabled`| Enable auto configuration for database backend | `True` if `keycloak_quarkus_ha_enabled` is True, else `False` | |`keycloak_quarkus_db_enabled`| Enable auto configuration for database backend | `True` if `keycloak_quarkus_ha_enabled` is True, else `False` |
|`keycloak_quarkus_admin_user`| Administration console user account | `admin` | |`keycloak_quarkus_admin_user`| Administration console user account | `admin` |
|`keycloak_quarkus_bind_address`| Address for binding service ports | `0.0.0.0` | |`keycloak_quarkus_bind_address`| Address for binding service ports | `0.0.0.0` |
|`keycloak_quarkus_host`| Hostname from where application is reachable by clients | `localhost` | |`keycloak_quarkus_host`| Hostname for the Keycloak server | `localhost` |
|`keycloak_quarkus_port`| Port from where application is reachable by clients | `8080` | |`keycloak_quarkus_port`| The port used by the proxy when exposing the hostname | `-1` |
|`keycloak_quarkus_http_port`| HTTP listening port | `8080` | |`keycloak_quarkus_http_port`| HTTP listening port | `8080` |
|`keycloak_quarkus_https_port`| TLS HTTP listening port | `8443` | |`keycloak_quarkus_https_port`| TLS HTTP listening port | `8443` |
|`keycloak_quarkus_ajp_port`| AJP port | `8009` | |`keycloak_quarkus_ajp_port`| AJP port | `8009` |

View file

@ -28,7 +28,7 @@ keycloak_quarkus_master_realm: master
### Configuration settings ### Configuration settings
keycloak_quarkus_bind_address: 0.0.0.0 keycloak_quarkus_bind_address: 0.0.0.0
keycloak_quarkus_host: localhost keycloak_quarkus_host: localhost
keycloak_quarkus_port: 8080 keycloak_quarkus_port: -1
keycloak_quarkus_http_enabled: True keycloak_quarkus_http_enabled: True
keycloak_quarkus_http_port: 8080 keycloak_quarkus_http_port: 8080
keycloak_quarkus_https_port: 8443 keycloak_quarkus_https_port: 8443

View file

@ -91,11 +91,11 @@ argument_specs:
type: "str" type: "str"
keycloak_quarkus_host: keycloak_quarkus_host:
default: "localhost" default: "localhost"
description: "Hostname from where application is reachable by clients" description: "Hostname for the Keycloak server"
type: "str" type: "str"
keycloak_quarkus_port: keycloak_quarkus_port:
default: 8080 default: -1
description: "Port from where application is reachable by clients" description: "The port used by the proxy when exposing the hostname"
type: "int" type: "int"
keycloak_quarkus_http_enabled: keycloak_quarkus_http_enabled:
default: true default: true