- Add DKIM, return-path (CNAME), and DMARC DNS records to Terraform - Add example variables for Postmark integration to vault.example.yml - Update .gitignore patterns
16 lines
448 B
YAML
16 lines
448 B
YAML
---
|
|
- hosts: web_hosts
|
|
become: true
|
|
pre_tasks:
|
|
- name: Load vault vars if present
|
|
include_vars:
|
|
file: "{{ playbook_dir }}/../secrets/vault.yml"
|
|
when: (lookup('ansible.builtin.fileglob', playbook_dir ~ '/../secrets/vault.yml', wantlist=True) | length) > 0
|
|
tags: [vault]
|
|
roles:
|
|
- role: docker
|
|
tags: [docker]
|
|
- role: app_deployer
|
|
tags: [app_deployer]
|
|
- role: app_core
|
|
tags: [app_core]
|