Files
opentf/website/source/docs/providers/icinga2/r/checkcommands.html.markdown
Len Smith 015e96d0dd Initial check in for Icinga2 Provider/Resource (#8306)
* Initial checkin for PR request

* Added an argument to provider to allow control over whether or not TLS Certs will skip verification. Controllable via provider or env variable being set

* Initial check-in to use refactored module

* Checkin of very MVP for creating/deleting host test which works and validates basic host creation and deletion

* Check in with support for creating hosts with variables working

* Checking in work to date

* Remove code that causes travis CI to fail while I debug

* Adjust create to accept multivale

* Back on track. Working basic tests. go-icinga2-api needs more test too

* Squashing

* Back on track. Working basic tests. go-icinga2-api needs more test too

* Check in refactored hostgroup support

* Check in refactored check_command, hosts, and hsotgroup with a few test

* Checking in service code

* Add in dependency for icinga2 provider

* Add documentation. Refactor, fix and extend based on feedback from Hashicorp

* Added checking and validation around invalid URL and unavailable server
2016-12-12 15:28:26 +00:00

1.2 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
icinga2 Icinga2: host docs-icinga2-resource-checkcommand Configures a checkcommand resource. This allows checkcommands to be configured, updated and deleted.

icinga2_checkcommand

Configures an Icinga2 checkcommand resource. This allows checkcommands to be configured, updated, and deleted.

Example Usage

# Configure a new checkcommand on an Icinga2 Server, that can be used to monitor hosts and/or services
provider "icinga2" {
  api_url=https://192.168.33.5:5665/v1
}

resource "icinga2_checkcommand" "apache_status" {
  name      = "apache_status"
  templates = [ "apache-status","plugin-check-command","plugin-check-command","ipv4-or-ipv6" ]
  command = "/usr/lib64/nagios/plugins/check_apache_status.pl"
  arguments = {
    "-H" = "$apache_status_address$"
    "-c" = "$apache_status_critical$"
    "-p" = "$apache_status_port$"
  }
}

Argument Reference

The following arguments are supported:

  • arguments - (Optional) A mapping of arguments to include with the command.
  • command - (Required) Path to the command te be executed.
  • name - (Required) Name by which to reference the checkcommand
  • templates - (Optional) A list of Icinga2 templates to assign to the host.