src.dualinventive.com/devops/ansible-dtap/rootnet-roles/di-authentication-service/templates/authentication-service.conf.j2

40 lines
1.3 KiB
Django/Jinja

# {{ ansible_managed }}
logfile: {{ item.logfile }}
loglevel: {{ item.loglevel }}
database:
host: {{ di_authentication_service_database_host }}
port: {{ di_authentication_service_database_port }}
user: {{ di_authentication_service_database_user }}
password: {{ di_authentication_service_database_password }}
name: {{ di_authentication_service_database_name }}
redis:
host: {{ di_authentication_service_redis_host }}
port: {{ di_authentication_service_redis_port }}
password: {{ di_authentication_service_redis_password }}
database: {{ di_authentication_service_redis_database }}
rest:
port: {{ di_authentication_service_rest_port }}
grpc:
port: {{ di_authentication_service_grpc_port }}
template:
file-path: {{ di_authentication_service_template_file_path }}
smtp:
host: {{ di_authentication_service_smtp_host }}
port: {{ di_authentication_service_smtp_port }}
username: {{ di_authentication_service_smtp_username }}
pass: {{ di_authentication_service_smtp_pass }}
sender: {{ di_authentication_service_smtp_sender }}
# generated rsa keys in pkcs1 or pkcs8 format:
# openssl genrsa -out key_rsa 4096
# openssl rsa -in app.rsa -pubout > key_rsa.pub
jwt:
private_key: {{ di_authentication_service_jwt_private_key_path }}
public_key: {{ di_authentication_service_jwt_public_key_path }}