Files
homelab/10-sno-hub-cluster/install.yml
2025-03-22 14:31:00 -05:00

20 lines
527 B
YAML

---
- name: Run all tasks necessary to configure matchbox to install the cluster
hosts: 127.0.0.1
connection: local
gather_facts: true
vars_prompt:
- name: freeipa_password
prompt: FreeIPA password for admin user
tasks:
- name: Deploy DNS entries for cluster via Terraform
community.general.terraform:
project_path: 01-dns/
variables:
freeipa_password: "{{ freeipa_password }}"
state: present
force_init: true
- include: 02-dhcp/ip-reservations.yml