2020-11-03 23:55:41 +00:00
|
|
|
---
|
2024-08-20 23:16:31 +00:00
|
|
|
- name: Configure HA
|
|
|
|
hosts: home-assistant
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- import_tasks: tasks/clean.yml
|
|
|
|
|
2024-07-31 17:59:47 +00:00
|
|
|
- name: Include secrets
|
|
|
|
include_vars:
|
2024-08-20 23:16:31 +00:00
|
|
|
file: vars/secrets.yaml
|
|
|
|
|
2023-12-15 12:23:24 +00:00
|
|
|
- name: Include ZHA vars
|
|
|
|
include_vars:
|
2024-08-20 23:16:31 +00:00
|
|
|
file: vars/zha-devices.yml
|
|
|
|
|
2023-12-15 13:04:10 +00:00
|
|
|
- name: Include Z-wave vars
|
|
|
|
include_vars:
|
2024-08-20 23:16:31 +00:00
|
|
|
file: vars/zwave-devices.yml
|
|
|
|
|
2023-12-16 00:46:23 +00:00
|
|
|
- name: Include battery vars
|
|
|
|
include_vars:
|
2024-08-20 23:16:31 +00:00
|
|
|
file: vars/battery.yml
|
|
|
|
|
2024-06-02 00:17:49 +00:00
|
|
|
- name: Include availability vars
|
|
|
|
include_vars:
|
2024-08-20 23:16:31 +00:00
|
|
|
file: vars/availability.yml
|
|
|
|
|
2024-08-20 23:22:37 +00:00
|
|
|
- name: Include shopping list
|
|
|
|
include_vars:
|
|
|
|
file: vars/shopping-list.yml
|
|
|
|
|
|
|
|
- name: Include light list for automations
|
|
|
|
include_vars:
|
|
|
|
file: vars/lights-automations.yml
|
|
|
|
|
2024-08-20 23:16:31 +00:00
|
|
|
roles:
|
|
|
|
- automations
|
|
|
|
- scripts
|
|
|
|
- config
|
|
|
|
- appdaemon
|
|
|
|
|
|
|
|
tasks:
|