Skip to content

Commit

Permalink
Merge pull request #221 from smutel/FixRtMaxLength
Browse files Browse the repository at this point in the history
git: Wrong length for route targets name
  • Loading branch information
smutel authored Aug 31, 2023
2 parents 9842c24 + 4f7cb91 commit 2c23b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/ipam/resource_netbox_ipam_route_targets.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func ResourceNetboxIpamRouteTargets() *schema.Resource {
"name": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.StringLenBetween(1, 100),
ValidateFunc: validation.StringLenBetween(1, 21),
Description: "The name of this Route Targets (ipam module).",
},
"tag": &tag.TagSchema,
Expand Down

0 comments on commit 2c23b22

Please sign in to comment.