Skip to content

Commit

Permalink
fix error in 'netbox_vlan_group' doc
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultbustarret-ovhcloud committed May 16, 2024
1 parent 704c7fc commit 056ec6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/vlan_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "netbox_vlan_group" "example2" {

- `description` (String) Defaults to `""`.
- `scope_id` (Number) Required when `scope_type` is set.
- `scope_type` (String) Valid values are `active`, `container`, `reserved` and `deprecated`.
- `scope_type` (String) Valid values are `dcim.location`, `dcim.site`, `dcim.sitegroup`, `dcim.region`, `dcim.rack`, `virtualization.cluster` and `virtualization.clustergroup`.
- `tags` (Set of String)

### Read-Only
Expand Down
2 changes: 1 addition & 1 deletion netbox/resource_netbox_vlan_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func resourceNetboxVlanGroup() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice(resourceNetboxVlanGroupScopeTypeOptions, false),
Description: buildValidValueDescription(resourceNetboxPrefixStatusOptions),
Description: buildValidValueDescription(resourceNetboxVlanGroupScopeTypeOptions),
},
"scope_id": {
Type: schema.TypeInt,
Expand Down

0 comments on commit 056ec6c

Please sign in to comment.