[constellation] Declare installed apps in configuration
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>certbot_on_virtu
parent
a42ce096e1
commit
a21aa5f91c
|
@ -20,6 +20,16 @@ glob_constellation:
|
||||||
user: 'constellation'
|
user: 'constellation'
|
||||||
password: "{{ vault.constellation_django_db_password }}"
|
password: "{{ vault.constellation_django_db_password }}"
|
||||||
name: 'constellation'
|
name: 'constellation'
|
||||||
|
applications:
|
||||||
|
- 'access'
|
||||||
|
- 'billing'
|
||||||
|
- 'dnsmanager'
|
||||||
|
- 'firewall'
|
||||||
|
- 'layers'
|
||||||
|
- 'management'
|
||||||
|
- 'member'
|
||||||
|
- 'topography'
|
||||||
|
- 'unix'
|
||||||
comnpay:
|
comnpay:
|
||||||
tpe: 'VAD-941-415'
|
tpe: 'VAD-941-415'
|
||||||
secret: '{{ vault.comnpay_secret }}'
|
secret: '{{ vault.comnpay_secret }}'
|
||||||
|
|
|
@ -8,6 +8,17 @@ loc_constellation:
|
||||||
database:
|
database:
|
||||||
user: 'constellation-dev'
|
user: 'constellation-dev'
|
||||||
name: 'constellation-dev'
|
name: 'constellation-dev'
|
||||||
|
applications:
|
||||||
|
- 'access'
|
||||||
|
- 'billing'
|
||||||
|
- 'dnsmanager'
|
||||||
|
- 'firewall'
|
||||||
|
- 'layers'
|
||||||
|
- 'management'
|
||||||
|
- 'member'
|
||||||
|
- 'topography'
|
||||||
|
- 'unix'
|
||||||
|
- 'debug'
|
||||||
comnpay:
|
comnpay:
|
||||||
tpe: 'HOM-832-854'
|
tpe: 'HOM-832-854'
|
||||||
secret: '{{ vault.comnpay_homologation_secret }}'
|
secret: '{{ vault.comnpay_homologation_secret }}'
|
||||||
|
|
|
@ -13,6 +13,13 @@ ADMINS = [{% for admin in constellation.admins %}{{ admin }}, {% endfor %}]
|
||||||
# The list of hostname the server will respond to.
|
# The list of hostname the server will respond to.
|
||||||
ALLOWED_HOSTS = [{% for host in constellation.allowed_hosts %}'{{ host }}', {% endfor %}]
|
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
|
# The time zone the server is runned in
|
||||||
TIME_ZONE = 'Europe/Paris'
|
TIME_ZONE = 'Europe/Paris'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue