forked from data.coop/ansible
28 lines
567 B
YAML
28 lines
567 B
YAML
# vim: ft=yaml.ansible
|
|
---
|
|
- hosts: production
|
|
gather_facts: true
|
|
become: true
|
|
vars:
|
|
ldap_dn: "dc=data,dc=coop"
|
|
|
|
vagrant: "{{ from_vagrant is defined and from_vagrant }}"
|
|
letsencrypt_enabled: "{{ not vagrant }}"
|
|
|
|
base_domain: "{{ 'datacoop.devel' if vagrant else 'data.coop' }}"
|
|
letsencrypt_email: "admin@{{ base_domain }}"
|
|
|
|
smtp_host: "postfix"
|
|
smtp_port: "587"
|
|
|
|
services_exclude:
|
|
- uptime_kuma
|
|
|
|
tasks:
|
|
- import_role:
|
|
name: ubuntu_base
|
|
tags:
|
|
- base_only
|
|
- import_role:
|
|
name: docker
|