Skip to content

Commit

Permalink
fix: Workaround in ASN resource for 386 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
smutel committed Nov 28, 2022
1 parent 6e5b8f6 commit 51e547a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/ipam/resource_netbox_ipam_asn.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func ResourceNetboxIpamASN() *schema.Resource {
"asn": {
Type: schema.TypeInt,
Required: true,
ValidateFunc: validation.IntBetween(1, 4294967295),
ValidateFunc: validation.IntAtLeast(1),
Description: "The asn number of this asn (ipam module).",
},
"content_type": {
Expand Down

0 comments on commit 51e547a

Please sign in to comment.