oidc-parent/deployment/roles/oidc_idp/templates/idp_config.toml.j2
Jan Dittberner 52193d647f Change default log level of IDP
- the IDP log level is now configurable via the idp_log_level variable
- the IDP log level default has been changed to 'debug' to be compatible
  with changes in
  1e676e8cf1
2024-08-07 07:39:58 +02:00

19 lines
796 B
Django/Jinja

[security]
csrf.key = "{{ idp_csrf_key | default(lookup('community.general.random_string', length=32, base64=true)) }}"
client.ca-file = "{{ idp_tls.client_cas }}"
[server]
name = "{{ oidc_urls.idp.address | default(ansible_default_ipv4.address) }}"
port = {{ oidc_urls.idp.address | default("3000") }}
certificate = "{{ idp_tls.cert }}"
key = "{{ idp_tls.key }}"
[session]
auth-key = "{{ idp_auth_key | default(lookup('community.general.random_string', length=64, base64=true)) }}"
enc-key = "{{ idp_enc_key | default(lookup('community.general.random_string', length=32, base64=true)) }}"
[admin]
url = "https://{{ oidc_urls.hydra_admin.address | default("hydra.cacert.localhost") }}:{{ oidc_urls.hydra_admin.port | default("3000") }}"
[log]
level = "{{ idp_log_level | default('debug') }}"