Initial Commit

This commit is contained in:
2020-10-13 16:33:32 +13:00
commit d646952ef5
23 changed files with 429 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- name: Converge
hosts: all
vars:
cmk_rpm_agent: "{{ lookup('env', 'CMK_RPM_AGENT') }}"
cmk_add_host: "{{ lookup('env', 'CMK_ADD_HOST') | bool }}"
cmk_omd_host: "{{ lookup('env', 'CMK_OMD_HOST') }}"
cmk_omd_site: "{{ lookup('env', 'CMK_OMD_SITE') }}"
cmk_username: "{{ lookup('env', 'CMK_USERNAME') }}"
cmk_secret: "{{ lookup('env', 'CMK_SECRET') }}"
tasks:
- name: "Include ansible-role-cmk-agent"
include_role:
name: "ansible-role-cmk-agent"