From 1b68a3b41900ed14942464247f832b2f6c600a8f Mon Sep 17 00:00:00 2001 From: Artur Date: Wed, 14 Aug 2024 16:55:47 +0200 Subject: [PATCH] smarthome: provide customization options example --- roles/smarthome/readme.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/roles/smarthome/readme.md b/roles/smarthome/readme.md index 19eeaf4..a64f7b4 100644 --- a/roles/smarthome/readme.md +++ b/roles/smarthome/readme.md @@ -33,8 +33,18 @@ All-in-one role to install [homeassistant](../homeassistant/readme.md), [mosquit ```yaml - role: "artyorsh.smarthome.smarthome" vars: - smarthome_user: - name: "{{ ansible_user }}" - password: "changeme" smarthome_zigbee_coordinator: "/dev/ttyUSB0" + smarthome_user: { name: "smarthome", password: "changeme" } +``` + +### Custom settings for individual containers + +```yaml +- role: "artyorsh.smarthome.smarthome" + vars: + smarthome_zigbee_coordinator: "/dev/ttyUSB0" + smarthome_user: { name: "smarthome", password: "changeme" } + homeassistant_homekit_config: + filter: + include_entity_globs: ["light.*"] ```