-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinventory.yml
More file actions
47 lines (47 loc) · 2.19 KB
/
Copy pathinventory.yml
File metadata and controls
47 lines (47 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
notifications_service:
hosts:
dev-notifications.nos.social:
notifications_apns_certificate_password: '{{ vault_apns_certificate_password_dev }}'
notifications.nos.social:
vars:
admin_username: admin
admin_password: '{{ vault_admin_password }}'
homedir: /home/{{ admin_username }}
ansible_user: '{{ admin_username }}'
cert_email: '{{ vault_cert_email }}'
cloudflare_api_token: '{{ vault_cloudflare_api_token }}'
domain: '{{ inventory_hostname }}'
notifications_nostr_listen_address: 8008
notifications_metrics_listen_address: 8009
notifications_health_endpoint: "https://{{inventory_hostname }}/_health"
notifications_apns_topic: com.verse.Nos
notifications_apns_certificate: certificate_apns.p12
notifications_apns_certificate_path: '{{inventory_dir}}/group_vars/all/{{ notifications_apns_certificate}}'
notifications_apns_certificate_password: '{{ vault_apns_certificate_password }}'
notifications_image: "ghcr.io/planetary-social/nos-notification-service-go"
prod:
hosts:
notifications.nos.social:
vars:
notifications_image_tag: stable
notifications_firestore_project_id: nos-notification-service
notifications_environment: PRODUCTION
notifications_log_level: DEBUG
notifications_google_pubsub_enabled: true
notifications_google_pubsub_project_id: pub-verse-app
notifications_google_pubsub_credentials_json: pubsub-credentials.json
notifications_google_pubsub_credentials_path: '{{ inventory_dir}}/group_vars/prod/vault_pubsub-credentials.json'
notifications_firestore_credentials_json: firestore-credentials.json
notifications_firestore_credentials_json_path: '{{ inventory_dir}}/group_vars/prod/vault_firestore-credentials.json'
dev:
hosts:
dev-notifications.nos.social:
vars:
notifications_image_tag: latest
notifications_firestore_project_id: nos-notification-service-dev
notifications_environment: DEVELOPMENT
notifications_log_level: DEBUG
notifications_google_pubsub_enabled: false
notifications_firestore_credentials_json: firestore-credentials.json
notifications_firestore_credentials_json_path: '{{ inventory_dir}}/group_vars/dev/vault_firestore-credentials.json'