Skip to content

Commit

Permalink
feat: add 'netbox_ip_address_assignment' resource (e-breuninger#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
skoppe committed Jun 2, 2024
1 parent afe33dc commit 4948815
Show file tree
Hide file tree
Showing 7 changed files with 573 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Assuming a device with the id `123` exists
resource "netbox_device_interface" "this" {
name = "eth0"
device_id = 123
type = "1000base-t"
}

resource "netbox_ip_address" "this" {
ip_address = "10.0.0.60/24"
status = "active"
}

resource "netbox_ip_address_assignment" "this" {
ip_address_id = netbox_ip_address.this.id
device_interface_id = netbox_device_interface.this.id
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Assuming a device with the id `123` exists
resource "netbox_device_interface" "this" {
name = "eth0"
device_id = 123
type = "1000base-t"
}

resource "netbox_ip_address" "this" {
ip_address = "10.0.0.60/24"
status = "active"
}

resource "netbox_ip_address_assignment" "this" {
ip_address_id = netbox_ip_address.this.id
interface_id = netbox_device_interface.this.id
object_type = "dcim.interface"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Assuming a virtual machine with the id `123` exists
resource "netbox_interface" "this" {
name = "eth0"
virtual_machine_id = 123
}

resource "netbox_ip_address" "this" {
ip_address = "10.0.0.60/24"
status = "active"
}

resource "netbox_ip_address_assignment" "this" {
ip_address_id = netbox_ip_address.this.id
interface_id = netbox_interface.this.id
object_type = "virtualization.vminterface"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Assuming a virtual machine with the id `123` exists
resource "netbox_interface" "this" {
name = "eth0"
virtual_machine_id = 123
}

resource "netbox_ip_address" "this" {
ip_address = "10.0.0.60/24"
status = "active"
}


resource "netbox_ip_address_assignment" "this" {
ip_address_id = netbox_ip_address.this.id
virtual_machine_interface_id = netbox_interface.this.id
}
1 change: 1 addition & 0 deletions netbox/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ func Provider() *schema.Provider {
"netbox_tenant_group": resourceNetboxTenantGroup(),
"netbox_vrf": resourceNetboxVrf(),
"netbox_ip_address": resourceNetboxIPAddress(),
"netbox_ip_address_assignment": resourceNetboxIPAddressAssignment(),
"netbox_interface_template": resourceNetboxInterfaceTemplate(),
"netbox_interface": resourceNetboxInterface(),
"netbox_service": resourceNetboxService(),
Expand Down
199 changes: 199 additions & 0 deletions netbox/resource_netbox_ip_address_assignment.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
package netbox

import (
"strconv"

"github.com/fbreckle/go-netbox/netbox/client"
"github.com/fbreckle/go-netbox/netbox/client/ipam"
"github.com/fbreckle/go-netbox/netbox/models"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
)

var resourceNetboxIPAddressAssignmentObjectTypeOptions = []string{"virtualization.vminterface", "dcim.interface"}

func resourceNetboxIPAddressAssignment() *schema.Resource {
return &schema.Resource{
Create: resourceNetboxIPAddressAssignmentCreate,
Read: resourceNetboxIPAddressAssignmentRead,
Update: resourceNetboxIPAddressAssignmentUpdate,
Delete: resourceNetboxIPAddressAssignmentDelete,

Description: `:meta:subcategory:IP Address Management (IPAM):From the [official documentation](https://docs.netbox.dev/en/stable/features/ipam/#ip-addresses):
> Assigns a NetBox Device, physical or virtual, to an already constructed IP address.
>
> In cases where the device assigned to the IP Address is not yet known when constructing the IP address (using either netbox_available_ip_address or netbox_ip_address), this resource allows assigning it independently.
>
> A typical scenario is when you statically allocate IP's to virtual machines and use netbox_available_ip_address to fetch that IP, but where the netbox_virtual_machine or netbox_interface can only be constructed after having started the virtual machine.`,

Schema: map[string]*schema.Schema{
"ip_address_id": {
Type: schema.TypeInt,
Required: true,
},
"interface_id": {
Type: schema.TypeInt,
Optional: true,
RequiredWith: []string{"object_type"},
},
"object_type": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice(resourceNetboxIPAddressObjectTypeOptions, false),
Description: buildValidValueDescription(resourceNetboxIPAddressObjectTypeOptions),
RequiredWith: []string{"interface_id"},
},
"virtual_machine_interface_id": {
Type: schema.TypeInt,
Optional: true,
ConflictsWith: []string{"interface_id", "device_interface_id"},
},
"device_interface_id": {
Type: schema.TypeInt,
Optional: true,
ConflictsWith: []string{"interface_id", "virtual_machine_interface_id"},
},
},
Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
}
}

func resourceNetboxIPAddressAssignmentCreate(d *schema.ResourceData, m interface{}) error {
id := d.Get("ip_address_id").(int)

d.SetId(strconv.Itoa(id))

return resourceNetboxIPAddressAssignmentUpdate(d, m)
}

func resourceNetboxIPAddressAssignmentRead(d *schema.ResourceData, m interface{}) error {
api := m.(*client.NetBoxAPI)

id, _ := strconv.ParseInt(d.Id(), 10, 64)
params := ipam.NewIpamIPAddressesReadParams().WithID(id)

res, err := api.Ipam.IpamIPAddressesRead(params, nil)
if err != nil {
if errresp, ok := err.(*ipam.IpamIPAddressesReadDefault); ok {
errorcode := errresp.Code()
if errorcode == 404 {
// If the ID is updated to blank, this tells Terraform the resource no longer exists (maybe it was destroyed out of band). Just like the destroy callback, the Read function should gracefully handle this case. https://www.terraform.io/docs/extend/writing-custom-providers.html
d.SetId("")
return nil
}
}
return err
}

ipAddress := res.GetPayload()
if ipAddress.AssignedObjectID != nil {
vmInterfaceID := getOptionalInt(d, "virtual_machine_interface_id")
deviceInterfaceID := getOptionalInt(d, "device_interface_id")
interfaceID := getOptionalInt(d, "interface_id")

switch {
case vmInterfaceID != nil:
d.Set("virtual_machine_interface_id", ipAddress.AssignedObjectID)
case deviceInterfaceID != nil:
d.Set("device_interface_id", ipAddress.AssignedObjectID)
// if interfaceID is given, object_type must be set as well
case interfaceID != nil:
d.Set("object_type", ipAddress.AssignedObjectType)
d.Set("interface_id", ipAddress.AssignedObjectID)
}
} else {
d.Set("interface_id", nil)
d.Set("object_type", "")
}

d.Set("ip_address_id", d.Id())

return nil
}

func resourceNetboxIPAddressAssignmentUpdate(d *schema.ResourceData, m interface{}) error {
api := m.(*client.NetBoxAPI)

id, _ := strconv.ParseInt(d.Id(), 10, 64)
params := ipam.NewIpamIPAddressesReadParams().WithID(id)

res, err := api.Ipam.IpamIPAddressesRead(params, nil)
if err != nil {
if errresp, ok := err.(*ipam.IpamIPAddressesReadDefault); ok {
errorcode := errresp.Code()
if errorcode == 404 {
// If the ID is updated to blank, this tells Terraform the resource no longer exists (maybe it was destroyed out of band). Just like the destroy callback, the Read function should gracefully handle this case. https://www.terraform.io/docs/extend/writing-custom-providers.html
d.SetId("")
return nil
}
}
return err
}

ipAddress := res.GetPayload()
data := models.WritableIPAddress{}

data.Address = ipAddress.Address
if ipAddress.Status != nil {
data.Status = *ipAddress.Status.Value
}

data.Description = ipAddress.Description
if ipAddress.Role != nil {
data.Role = *ipAddress.Role.Value
}
data.DNSName = ipAddress.DNSName
if ipAddress.Vrf != nil {
data.Vrf = &ipAddress.Vrf.ID
}
if ipAddress.Tenant != nil {
data.Tenant = &ipAddress.Tenant.ID
}
if ipAddress.NatInside != nil {
data.NatInside = &ipAddress.NatInside.ID
}

data.Tags = ipAddress.Tags

vmInterfaceID := getOptionalInt(d, "virtual_machine_interface_id")
deviceInterfaceID := getOptionalInt(d, "device_interface_id")
interfaceID := getOptionalInt(d, "interface_id")

switch {
case vmInterfaceID != nil:
data.AssignedObjectType = strToPtr("virtualization.vminterface")
data.AssignedObjectID = vmInterfaceID
case deviceInterfaceID != nil:
data.AssignedObjectType = strToPtr("dcim.interface")
data.AssignedObjectID = deviceInterfaceID
// if interfaceID is given, object_type must be set as well
case interfaceID != nil:
data.AssignedObjectType = strToPtr(d.Get("object_type").(string))
data.AssignedObjectID = interfaceID
// default = ip is not linked to anything
default:
data.AssignedObjectType = strToPtr("")
data.AssignedObjectID = nil
}

params2 := ipam.NewIpamIPAddressesUpdateParams().WithID(id).WithData(&data)

_, err2 := api.Ipam.IpamIPAddressesUpdate(params2, nil)
if err2 != nil {
return err2
}

return resourceNetboxIPAddressRead(d, m)
}

func resourceNetboxIPAddressAssignmentDelete(d *schema.ResourceData, m interface{}) error {
d.Set("interface_id", nil)
d.Set("object_type", "")
d.Set("virtual_machine_interface_id", nil)
d.Set("device_interface_id", nil)

return resourceNetboxIPAddressAssignmentUpdate(d, m)
}
Loading

0 comments on commit 4948815

Please sign in to comment.