forked from CCCHH/ansible-infra
19 lines
619 B
YAML
19 lines
619 B
YAML
---
|
|
# Copyright (C) 2017 Robin Schneider <ypid@riseup.net>
|
|
# Copyright (C) 2017 DebOps <https://debops.org/>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
- name: Setup and manage Home Assistant
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debops_service_homeassistant' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
roles:
|
|
|
|
- role: homeassistant
|
|
tags: [ 'role::homeassistant' ]
|