terraform-provider-netbox
terraform-provider-netbox copied to clipboard
Feature Request: Resource for Netbox Group
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.