diff --git a/docs/data-sources/manufacturers.md b/docs/data-sources/manufacturers.md index d44b97b..499a2ca 100644 --- a/docs/data-sources/manufacturers.md +++ b/docs/data-sources/manufacturers.md @@ -34,6 +34,7 @@ Read-Only: - `inventoryitem_count` (Number) - `last_updated` (String) - `name` (String) +- `notes_url` (String) - `platform_count` (Number) - `slug` (String) - `url` (String) diff --git a/docs/resources/manufacturer.md b/docs/resources/manufacturer.md index 7605ef5..a5db2fd 100644 --- a/docs/resources/manufacturer.md +++ b/docs/resources/manufacturer.md @@ -24,6 +24,7 @@ This object manages a manufacturer in Nautobot - `custom_fields` (Map of String) Manufacturer custom fields. - `description` (String) Manufacturer's description. - `display` (String) Manufacturer's display name. +- `notes_url` (String) Notes for manufacturer. - `slug` (String) Manufacturer's slug. - `url` (String) Manufacturer's URL. diff --git a/go.mod b/go.mod index dc51a1a..dd32858 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,7 @@ go 1.20 require ( github.com/deepmap/oapi-codegen v1.12.4 + github.com/google/uuid v1.3.0 github.com/hashicorp/terraform-plugin-docs v0.13.0 github.com/hashicorp/terraform-plugin-log v0.8.0 github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1 @@ -24,7 +25,6 @@ require ( github.com/fatih/color v1.15.0 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/google/go-cmp v0.5.9 // indirect - github.com/google/uuid v1.3.0 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-checkpoint v0.5.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect