forked from data.coop/ansible
Sam A.
5a63e8e1a8
Co-authored-by: Sam A. <samsapti@noreply@git.data.coop> Co-committed-by: Sam A. <samsapti@noreply@git.data.coop>
45 lines
808 B
YAML
45 lines
808 B
YAML
---
|
|
- hosts: all
|
|
gather_facts: true
|
|
become: true
|
|
vars:
|
|
base_domain: data.coop
|
|
letsencrypt_email: admin@data.coop
|
|
ldap_dn: "dc=data,dc=coop"
|
|
|
|
vagrant: "{{ ansible_virtualization_role == 'guest' }}"
|
|
letsencrypt_enabled: "{{ not vagrant }}"
|
|
|
|
services:
|
|
- nginx-proxy
|
|
- postfix
|
|
- openldap
|
|
- nextcloud
|
|
- passit
|
|
- gitea
|
|
- matrix_riot
|
|
- privatebin
|
|
- codimd
|
|
- netdata
|
|
- docker_registry
|
|
- drone
|
|
- websites
|
|
- ulovliglogning-dk
|
|
- watchtower
|
|
- mailu
|
|
- portainer
|
|
- mastodon
|
|
- rallly
|
|
- membersystem
|
|
|
|
smtp_host: "postfix"
|
|
smtp_port: "587"
|
|
|
|
tasks:
|
|
- import_role:
|
|
name: ubuntu_base
|
|
tags:
|
|
- base_only
|
|
- import_role:
|
|
name: docker
|