ansible/playbook.yml

28 lines
567 B
YAML
Raw Permalink Normal View History

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