23 lines
491 B
YAML
23 lines
491 B
YAML
|
|
||
|
- 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'
|