Skip to content

A Collection that contains Ansible modules to change objects in Icinga 2 using the director API.

Notifications You must be signed in to change notification settings

michaelamattes/ansible-collection-icinga-director

 
 

Repository files navigation

Icinga Director Collection for Ansible

ci-ansible-test ci-ansible-lint

This collection contains Ansible modules to change objects in Icinga 2 using the director API.

Required Ansible version: 2.9

Currently supported modules:

  • icinga_command
  • icinga_command_template
  • icinga_host
  • icinga_host_template
  • icinga_hostgroup
  • icinga_notification
  • icinga_service_apply
  • icinga_service_template
  • icinga_servicegroup
  • icinga_timeperiod
  • icinga_user
  • icinga_user_template

Installation

These modules are distributed as collections. To install them, run:

ansible-galaxy collection install t_systems_mms.icinga_director

Alternatively put the collection into a requirements.yml-file:

---
collections:
- t_systems_mms.icinga_director

Examples

See the examples directory for a complete list of examples.

- hosts: localhost
  collections:
    - t_systems_mms.icinga_director
  tasks:
    - name: create a host in icinga
      icinga_host:
        state: present
        url: "https://example.com"
        url_username: "{{ icinga_user }}"
        url_password: "{{ icinga_pass }}"
        object_name: "{{ ansible_hostname }}"
        address: "{{ ansible_default_ipv4.address }}"
        display_name: "{{ ansible_hostname }}"
        groups:
          - "foo"
        imports:
          - "StandardServer"
        vars:
          dnscheck: "no"

Troubleshooting

If the following error is thrown, check if you're behind a proxy and use force_basic_auth: true in the task.

fatal: [localhost]: FAILED! => {"changed": false, "msg": "bad return code while creating: -1. Error message: Request failed: <urlopen error Tunnel connection failed: 302 Found>"}

License

GPLv3

Author Information

  • Sebastian Gumprich
  • Lars Krahl

About

A Collection that contains Ansible modules to change objects in Icinga 2 using the director API.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%