add: dispatcher secrets & vars

This commit is contained in:
2024-02-19 01:17:29 +00:00
parent f2583ea0d4
commit 78edd490b1
3 changed files with 9 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ event_dispatcher_port: 443
event_dispatcher_address: "{{ event_dispatcher_proto }}://{{ event_dispatcher_host }}"
event_dispatcher_user: dispatch
event_dispatcher_pass: HISTORY_PURGED_SECRET
notification_settings_access_token: HISTORY_PURGED_SECRET
ntfy_api_target: https://p.athq.de
ntfy_push_target: https://push.atlantishq.de

View File

@@ -9,6 +9,7 @@ atlantis-verify:
LDAP_BASE_DN: {{ ldap_user_dn }}
DISPATCH_SERVER: {{ event_dispatcher_address }}
DISPATCH_SETTINGS_TOKEN: {{ notification_settings_access_token }}
SQLALCHEMY_DATABASE_URI: "instance/database.sqlite"

View File

@@ -11,6 +11,8 @@ event-dispatcher:
LDAP_BIND_PW : "{{ ldap_password }}"
LDAP_BASE_DN : "{{ ldap_user_dn }}"
SETTINGS_ACCESS_TOKEN: "{{ notification_settings_access_token }}"
event-dispatcher-worker:
image: registry.atlantishq.de/athq/event-dispatcher-worker
@@ -31,4 +33,8 @@ event-dispatcher-worker:
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
LDAP_BIND_PW : "{{ ldap_password }}"
LDAP_BASE_DN : "{{ ldap_user_dn }}"
SMTP_TARGET: "{{ smtp_internal_host }}"
SMTP_PORT: "{{ smtp_internal_host_port }}"
SMTP_USER: "{{ smtp_service_user }}@atlantishq.de"
SMTP_PASS: "{{ smtp_service_pass }}"