From 9cd948dcdc67dfc2ed9303d8da3fbc77fd26726a Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Wed, 14 Oct 2020 23:18:33 +1300 Subject: [PATCH] Updated defaults --- defaults/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/defaults/main.yml b/defaults/main.yml index 9e61354..d22a273 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -3,11 +3,15 @@ cmk_add_host: false # Should be true/false whether we should automatically add h cmk_omd_protocol: http # Should be http or https cmk_omd_host: your-checkmk-hostname cmk_omd_site: your-checkmk-site # e.g the first piece after the / following your hostname + # If you have created a folder in WATO already you want hosts to be put in when registered # uncomment cmk_folder below and specify the folder to use. Otherwise the role creates and # adds new hosts by default to Unsorted folder # cmk_folder: your_folder_in_WATO + +# Copy paste the link address for rpm agent from CheckMK cmk_rpm_agent: http://url-from-your-agent-bakery-in-checkmk.rpm +# Copy paste the link address for MSI (Windows) agent from CheckMK cmk_msi_agent: http://url-from-your-agent-bakery-in-checkmk.msi @@ -18,6 +22,7 @@ cmk_username: some-username # I recommend encrypting this with ansible-vault. # Example: ansible-vault encrypt_string somesecret_string --name cmk_secret cmk_secret: some-secret + # Combined string required for unattended actions cmk_auth: "&_username={{ cmk_username }}&_secret={{ cmk_secret }}"