terraform-provider-netbox icon indicating copy to clipboard operation
terraform-provider-netbox copied to clipboard

Feature Request: Resource for Netbox Group

Open flemingdp opened this issue 2 years ago • 0 comments

We'd like to request adding a new resource for managing netbox groups that are related to users and permissions.

This is based on an API call like below:

curl -s -X POST $NETBOX_SERVER_URL/api/users/groups/ \
    -H "Authorization: Token $NETBOX_API_TOKEN" \
    -H "Content-Type: application/json" \
    -H "Accept: application/json; indent=4" \
    -d "{\"name\": \"string\"}"
{
  "id": 0,
  "url": "string",
  "display": "string",
  "name": "string",
  "user_count": 0
}

Perhaps the resource could be named netbox_group.

We may be able to submit a PR with this.

Thanks for your input and guidance.

flemingdp avatar Jun 08 '23 20:06 flemingdp