25 lines
515 B
YAML
25 lines
515 B
YAML
# vim: ft=yaml.ansible
|
|
---
|
|
- hosts: all
|
|
gather_facts: true
|
|
become: true
|
|
vars:
|
|
ldap_dn: "dc=data,dc=coop"
|
|
|
|
vagrant: "{{ ansible_virtualization_role == 'guest' }}"
|
|
letsencrypt_enabled: "{{ not vagrant }}"
|
|
|
|
base_domain: "{{ 'datacoop.devel' if vagrant else 'data.coop' }}"
|
|
letsencrypt_email: "admin@{{ base_domain }}"
|
|
|
|
smtp_host: "postfix"
|
|
smtp_port: "587"
|
|
|
|
tasks:
|
|
- import_role:
|
|
name: ubuntu_base
|
|
tags:
|
|
- base_only
|
|
- import_role:
|
|
name: docker
|