opentofu/builtin/providers/icinga2/resource_icinga2_host.go
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

122 lines
2.5 KiB
Go

package icinga2
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
"github.com/lrsmith/go-icinga2-api/iapi"
)
func resourceIcinga2Host() *schema.Resource {
return &schema.Resource{
Create: resourceIcinga2HostCreate,
Read: resourceIcinga2HostRead,
Delete: resourceIcinga2HostDelete,
Schema: map[string]*schema.Schema{
"hostname": &schema.Schema{
Type: schema.TypeString,
Required: true,
Description: "Hostname",
ForceNew: true,
},
"address": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"check_command": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"vars": &schema.Schema{
Type: schema.TypeMap,
Optional: true,
ForceNew: true,
},
},
}
}
func resourceIcinga2HostCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
hostname := d.Get("hostname").(string)
address := d.Get("address").(string)
checkCommand := d.Get("check_command").(string)
vars := make(map[string]string)
// Normalize from map[string]interface{} to map[string]string
iterator := d.Get("vars").(map[string]interface{})
for key, value := range iterator {
vars[key] = value.(string)
}
// Call CreateHost with normalized data
hosts, err := client.CreateHost(hostname, address, checkCommand, vars)
if err != nil {
return err
}
found := false
for _, host := range hosts {
if host.Name == hostname {
d.SetId(hostname)
found = true
}
}
if !found {
return fmt.Errorf("Failed to Create Host %s : %s", hostname, err)
}
return nil
}
func resourceIcinga2HostRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
hostname := d.Get("hostname").(string)
hosts, err := client.GetHost(hostname)
if err != nil {
return err
}
found := false
for _, host := range hosts {
if host.Name == hostname {
d.SetId(hostname)
d.Set("hostname", host.Name)
d.Set("address", host.Attrs.Address)
d.Set("check_command", host.Attrs.CheckCommand)
d.Set("vars", host.Attrs.Vars)
found = true
}
}
if !found {
return fmt.Errorf("Failed to Read Host %s : %s", hostname, err)
}
return nil
}
func resourceIcinga2HostDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
hostname := d.Get("hostname").(string)
err := client.DeleteHost(hostname)
if err != nil {
return fmt.Errorf("Failed to Delete Host %s : %s", hostname, err)
}
return nil
}