Skip to content

Commit

Permalink
feat: Add netbox_ipam_ip_range data
Browse files Browse the repository at this point in the history
  • Loading branch information
smutel committed Sep 20, 2023
1 parent f6a1a38 commit d8f0455
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/data-sources/netbox_ipam_ip_range/data-source.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
data "netbox_ipam_ip_range" "iprange_test" {
start_address = "192.168.56.1/24"
end_address = "192.168.56.254/24"
}
71 changes: 71 additions & 0 deletions netbox/ipam/data_netbox_ipam_ip_range.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
package ipam

import (
"context"
"strconv"

"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
netboxclient "github.com/smutel/go-netbox/v3/netbox/client"
"github.com/smutel/go-netbox/v3/netbox/client/ipam"
"github.com/smutel/terraform-provider-netbox/v7/netbox/internal/util"
)

func DataNetboxIpamIPRange() *schema.Resource {
return &schema.Resource{
Description: "Get info about IP addresses (ipam module) from netbox.",
ReadContext: dataNetboxIpamIPRangeRead,

Schema: map[string]*schema.Schema{
"content_type": {
Type: schema.TypeString,
Computed: true,
Description: "The content type of this IP range (ipam module).",
},
"start_address": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.IsCIDR,
Description: "The first address of this IP range",
},
"end_address": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.IsCIDR,
Description: "The last address of this IP range (ipam module)",
},
},
}
}

func dataNetboxIpamIPRangeRead(ctx context.Context, d *schema.ResourceData,
m interface{}) diag.Diagnostics {
client := m.(*netboxclient.NetBoxAPI)

startAddress := d.Get("start_address").(string)
endAddress := d.Get("end_address").(string)

p := ipam.NewIpamIPRangesListParams().WithStartAddress(&startAddress).WithEndAddress(&endAddress)

list, err := client.Ipam.IpamIPRangesList(p, nil)
if err != nil {
return diag.FromErr(err)
}

if *list.Payload.Count < 1 {
return diag.Errorf("Your query returned no results. " +
"Please change your search criteria and try again.")
} else if *list.Payload.Count > 1 {
return diag.Errorf("Your query returned more than one result. " +
"Please try a more specific search criteria.")
}

r := list.Payload.Results[0]
d.SetId(strconv.FormatInt(r.ID, 10))
if err = d.Set("content_type", util.ConvertURIContentType(r.URL)); err != nil {
return diag.FromErr(err)
}

return nil
}
1 change: 1 addition & 0 deletions netbox/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ func Provider() *schema.Provider {
"netbox_ipam_aggregate": ipam.DataNetboxIpamAggregate(),
"netbox_ipam_asn": ipam.DataNetboxIpamAsn(),
"netbox_ipam_ip_addresses": ipam.DataNetboxIpamIPAddresses(),
"netbox_ipam_ip_range": ipam.DataNetboxIpamIPRange(),
"netbox_ipam_role": ipam.DataNetboxIpamRole(),
"netbox_ipam_route_targets": ipam.DataNetboxIpamRouteTargets(),
"netbox_ipam_service": ipam.DataNetboxIpamService(),
Expand Down

0 comments on commit d8f0455

Please sign in to comment.