| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ---
- kind: ansible
- metadata:
- name: Install Checkmk Agent
- description: |-
- Ansible playbook to install Checkmk monitoring agent on hosts. Uses the checkmk.general.agent role with automatic registration.
- ## References
- - **Project**: https://github.com/Checkmk/ansible-collection-checkmk.general
- - **Documentation**: https://docs.checkmk.com/
- version: 2.4.0
- author: Christian Lempa
- date: "2025-11-11"
- tags: []
- icon:
- provider: selfh
- id: checkmk
- draft: false
- spec:
- checkmk:
- title: Checkmk Configuration
- vars:
- checkmk_server:
- type: str
- description: Checkmk Server
- required: true
- checkmk_protocol:
- type: str
- description: Checkmk Server Protocol
- enum:
- - http
- - https
- default: https
- required: true
- checkmk_site:
- type: str
- description: Checkmk Site
- default: cmk
- required: true
- checkmk_auto_activate:
- type: bool
- description: Auto Activate Agent
- checkmk_tls:
- type: bool
- description: Use TLS for Agent Communication
- checkmk_user:
- type: str
- description: Checkmk Automation User
- required: true
- checkmk_pass:
- type: secret
- description: Checkmk Automation User Password
- required: true
- checkmk_host:
- type: str
- description: Checkmk Host Name
- required: true
|