-
Notifications
You must be signed in to change notification settings - Fork 62
/
inventory.yml.template
42 lines (42 loc) · 2.06 KB
/
inventory.yml.template
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
---
all:
hosts:
primero.example.com:
ansible_user: 'ubuntu'
primero_host: 'primero.example.com'
primero_tag: 'latest'
# As of Primero v2.11, the default Docker deployed PostgreSQL is 15.6.
# If you want to run Primero with a different version of PostgreSQL,
# set primero_postgres_version to either '14', or '15'.
# NOTE: YOU NEED TO PERFORM A DATA MIGRATION BEFORE CHANGING POSTGRES VERSIONS!!!!!!
# primero_postgres_version: '15'
locale_all: 'en,fr,ar'
always_pull: true
# These 3 variables are used to drive the build task.
# Can be omitted if pulling images from Dockerhub
primero_repo_branch: 'main'
build_docker_tag: 'latest'
build_docker_container_registry: ''
# If you want to seed from a private configuration repo
primero_configuration_repo: '[email protected]:quoin/primero-x-configuration.git'
primero_configuration_repo_branch: 'main'
primero_configuration_path: 'directory/of/config/loader/script'
use_lets_encrypt: 'true'
# The other certbot/lets_encrypt variables are optional. Include only if using Let's Encrypt
certbot_domain:
- '{{ primero_host }}'
certbot_email: '[email protected]'
lets_encrypt_domain: '{{ primero_host }}'
lets_encrypt_email: '{{ certbot_email }}'
# Different for self-signed certs
nginx_ssl_cert_path: '/etc/letsencrypt/live/primero/fullchain.pem'
nginx_ssl_key_path: '/etc/letsencrypt/live/primero/privkey.pem'
# Optionally parametrize Primero containers with other environment attributes.
# Do not use this dictionary for secrets!!!
environment_variables:
RUN_DEFAULT_PRIMERO_SEEDS: 'false' # Set to true if you want to run default seeds
PRIMERO_DEFAULT_USERS: 'true' # Seed default users when using the managed Primero SaaS configs
# LOCALE_DEFAULT: 'ar' # Optionally override English as the default locale.
PRIMERO_WEBPUSH: 'true'
PRIMERO_WEBPUSH_CONTACT: '[email protected]'
SOLR_ENABLED: 'false'