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

119 lines
2.5 KiB
Go

package icinga2
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
"github.com/lrsmith/go-icinga2-api/iapi"
)
func resourceIcinga2Checkcommand() *schema.Resource {
return &schema.Resource{
Create: resourceIcinga2CheckcommandCreate,
Read: resourceIcinga2CheckcommandRead,
Delete: resourceIcinga2CheckcommandDelete,
Schema: map[string]*schema.Schema{
"name": &schema.Schema{
Type: schema.TypeString,
Required: true,
Description: "Name",
ForceNew: true,
},
"command": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"templates": &schema.Schema{
Type: schema.TypeList,
Required: true,
ForceNew: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"arguments": &schema.Schema{
Type: schema.TypeMap,
Optional: true,
ForceNew: true,
},
},
}
}
func resourceIcinga2CheckcommandCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
name := d.Get("name").(string)
command := d.Get("command").(string)
arguments := make(map[string]string)
iterator := d.Get("arguments").(map[string]interface{})
for key, value := range iterator {
arguments[key] = value.(string)
}
checkcommands, err := client.CreateCheckcommand(name, command, arguments)
if err != nil {
return err
}
found := false
for _, checkcommand := range checkcommands {
if checkcommand.Name == name {
d.SetId(name)
found = true
}
}
if !found {
return fmt.Errorf("Failed to create Checkcommand %s : %s", name, err)
}
return nil
}
func resourceIcinga2CheckcommandRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
name := d.Get("name").(string)
checkcommands, err := client.GetCheckcommand(name)
if err != nil {
return err
}
found := false
for _, checkcommand := range checkcommands {
if checkcommand.Name == name {
d.SetId(name)
d.Set("command", checkcommand.Attrs.Command[0])
d.Set("Templates", checkcommand.Attrs.Templates)
d.Set("arguments", checkcommand.Attrs.Arguments)
found = true
}
}
if !found {
return fmt.Errorf("Failed to Read Checkcommand %s : %s", name, err)
}
return nil
}
func resourceIcinga2CheckcommandDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*iapi.Server)
name := d.Get("name").(string)
err := client.DeleteCheckcommand(name)
if err != nil {
return fmt.Errorf("Failed to Delete Checkcommand %s : %s", name, err)
}
return nil
}