ansible/playbook.yml

28 lines
567 B
YAML
Raw Normal View History

# vim: ft=yaml.ansible
2018-05-08 21:09:24 +02:00
---
- hosts: production
gather_facts: true
2018-06-24 01:44:30 +02:00
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 }}"
2019-03-05 15:17:53 +01:00
smtp_host: "postfix"
smtp_port: "587"
2018-05-10 11:19:54 +02:00
2024-02-18 17:18:54 +01:00
services_exclude:
- uptime_kuma
tasks:
- import_role:
name: ubuntu_base
2022-11-11 22:16:22 +01:00
tags:
- base_only
- import_role:
2019-03-05 13:13:16 +01:00
name: docker