-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
data "netbox_ipam_asn" "asn_test" { | ||
asn = 15 | ||
rir_id = 15 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
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 DataNetboxIpamAsn() *schema.Resource { | ||
return &schema.Resource{ | ||
Description: "Get info about aggregate (ipam module) from Netbox.", | ||
ReadContext: dataNetboxIpamAsnRead, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"asn": { | ||
Type: schema.TypeInt, | ||
Required: true, | ||
ValidateFunc: validation.IntAtLeast(1), | ||
Description: "The asn number of this asn (ipam module).", | ||
}, | ||
"content_type": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
Description: "The content type of this aggregate (ipam module).", | ||
}, | ||
"rir_id": { | ||
Type: schema.TypeInt, | ||
Required: true, | ||
Description: "The rir for this asn (ipam module).", | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func dataNetboxIpamAsnRead(ctx context.Context, d *schema.ResourceData, | ||
m interface{}) diag.Diagnostics { | ||
client := m.(*netboxclient.NetBoxAPI) | ||
|
||
asn := d.Get("asn").(int) | ||
asnStr := strconv.Itoa(asn) | ||
rirID := d.Get("rir_id").(int) | ||
rirIDStr := strconv.Itoa(rirID) | ||
|
||
p := ipam.NewIpamAsnsListParams().WithAsn(&asnStr).WithRirID(&rirIDStr) | ||
|
||
list, err := client.Ipam.IpamAsnsList(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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters