mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-08-06 14:14:30 -07:00
Merge pull request #116 from Footur/keystore
[keycloak_quarkus] Enable config of a key store and trust store
This commit is contained in:
commit
cee02cfd36
6 changed files with 56 additions and 9 deletions
|
@ -108,10 +108,10 @@ argument_specs:
|
|||
default: 8080
|
||||
description: "HTTP port"
|
||||
type: "int"
|
||||
keycloak_quarkus_https_enabled:
|
||||
keycloak_quarkus_https_key_file_enabled:
|
||||
default: false
|
||||
description: "Enable listener on HTTPS port"
|
||||
type: "bool"
|
||||
description: "Enable configuration of HTTPS via files in PEM format"
|
||||
type: "bool"
|
||||
keycloak_quarkus_key_file:
|
||||
default: "{{ keycloak.home }}/conf/server.key.pem"
|
||||
description: "The file path to a private key in PEM format"
|
||||
|
@ -120,6 +120,30 @@ argument_specs:
|
|||
default: "{{ keycloak.home }}/conf/server.crt.pem"
|
||||
description: "The file path to a server certificate or certificate chain in PEM format"
|
||||
type: "str"
|
||||
keycloak_quarkus_https_key_store_enabled:
|
||||
default: false
|
||||
description: "Enable configuration of HTTPS via a key store"
|
||||
type: "bool"
|
||||
keycloak_quarkus_key_store_file:
|
||||
default: "{{ keycloak.home }}/conf/key_store.p12"
|
||||
description: "The file path to the key store"
|
||||
type: "str"
|
||||
keycloak_quarkus_key_store_password:
|
||||
default: ""
|
||||
description: "Password for the key store"
|
||||
type: "str"
|
||||
keycloak_quarkus_https_trust_store_enabled:
|
||||
default: false
|
||||
description: "Enalbe confiugration of a trust store"
|
||||
type: "bool"
|
||||
keycloak_quarkus_trust_store_file:
|
||||
default: "{{ keycloak.home }}/conf/trust_store.p12"
|
||||
description: "The file pat to the trust store"
|
||||
type: "str"
|
||||
keycloak_quarkus_trust_store_password:
|
||||
default: ""
|
||||
description: "Password for the trust store"
|
||||
type: "str"
|
||||
keycloak_quarkus_https_port:
|
||||
# line 30 of defaults/main.yml
|
||||
default: 8443
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue