1
0
ansible-home-assistant/roles/config/tasks/main.yml

23 lines
491 B
YAML
Raw Normal View History

2024-08-20 23:16:31 +00:00
- name: Copy configuration
copy:
src: configuration.yaml
dest: '{{ pwd_config }}/configuration.yaml'
- name: Copy alert
copy:
src: alert.yaml
dest: '{{ pwd_config }}/alert.yaml'
- name: Copy customize
copy:
src: customize.yaml
dest: '{{ pwd_config }}/customize.yaml'
- name: Copy groups
copy:
src: groups.yaml
dest: '{{ pwd_config }}/groups.yaml'
- name: Copy secrets
copy:
src: './vars/secrets.yaml'
dest: '{{ pwd_config }}/secrets.yaml'