[constellation] Declare installed apps in configuration

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
certbot_on_virtu
Yohann D'ANELLO 2021-03-22 13:23:31 +01:00
parent a42ce096e1
commit a21aa5f91c
Signed by: _ynerant
GPG Key ID: 3A75C55819C8CF85
3 changed files with 28 additions and 0 deletions

View File

@ -20,6 +20,16 @@ glob_constellation:
user: 'constellation'
password: "{{ vault.constellation_django_db_password }}"
name: 'constellation'
applications:
- 'access'
- 'billing'
- 'dnsmanager'
- 'firewall'
- 'layers'
- 'management'
- 'member'
- 'topography'
- 'unix'
comnpay:
tpe: 'VAD-941-415'
secret: '{{ vault.comnpay_secret }}'

View File

@ -8,6 +8,17 @@ loc_constellation:
database:
user: 'constellation-dev'
name: 'constellation-dev'
applications:
- 'access'
- 'billing'
- 'dnsmanager'
- 'firewall'
- 'layers'
- 'management'
- 'member'
- 'topography'
- 'unix'
- 'debug'
comnpay:
tpe: 'HOM-832-854'
secret: '{{ vault.comnpay_homologation_secret }}'

View File

@ -13,6 +13,13 @@ ADMINS = [{% for admin in constellation.admins %}{{ admin }}, {% endfor %}]
# The list of hostname the server will respond to.
ALLOWED_HOSTS = [{% for host in constellation.allowed_hosts %}'{{ host }}', {% endfor %}]
# Installed applications
LOCAL_APPS = [
{% for app in constellation.applications %}
'{{ app }}',
{% endfor %}
]
# The time zone the server is runned in
TIME_ZONE = 'Europe/Paris'