Files
homelab-infra/infrastructure/samba-ad/ansible/provision-dc.yml
T
panxiao81 88a02ababa
lint / yaml (push) Has been cancelled
lint / ansible (push) Has been cancelled
lint / terraform (push) Has been cancelled
Establish clean homelab infrastructure baseline
Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
2026-09-09 16:47:20 +00:00

17 lines
459 B
YAML

---
# Provision the Samba AD Domain Controller.
# ansible-playbook provision-dc.yml --ask-vault-pass
# ansible-playbook provision-dc.yml --tags verify # smoke tests only
- name: Samba AD Domain Controller
hosts: samba_dc
become: true
gather_facts: true
roles:
- role: samba_ad_dc
post_tasks:
- name: Smoke tests
ansible.builtin.import_role:
name: samba_ad_dc
tasks_from: verify.yml
tags: [verify, never]