Merge latest updates in and get the same updates as pipeline. This should solve the pipeline issue.

main
Mikhail Yohman 2023-03-27 08:59:56 -06:00
parent 61b70f7550
commit a25f808944
No known key found for this signature in database
GPG Key ID: B317161F0F35E82A
3 changed files with 3 additions and 1 deletions

View File

@ -34,6 +34,7 @@ Read-Only:
- `inventoryitem_count` (Number) - `inventoryitem_count` (Number)
- `last_updated` (String) - `last_updated` (String)
- `name` (String) - `name` (String)
- `notes_url` (String)
- `platform_count` (Number) - `platform_count` (Number)
- `slug` (String) - `slug` (String)
- `url` (String) - `url` (String)

View File

@ -24,6 +24,7 @@ This object manages a manufacturer in Nautobot
- `custom_fields` (Map of String) Manufacturer custom fields. - `custom_fields` (Map of String) Manufacturer custom fields.
- `description` (String) Manufacturer's description. - `description` (String) Manufacturer's description.
- `display` (String) Manufacturer's display name. - `display` (String) Manufacturer's display name.
- `notes_url` (String) Notes for manufacturer.
- `slug` (String) Manufacturer's slug. - `slug` (String) Manufacturer's slug.
- `url` (String) Manufacturer's URL. - `url` (String) Manufacturer's URL.

2
go.mod
View File

@ -4,6 +4,7 @@ go 1.20
require ( require (
github.com/deepmap/oapi-codegen v1.12.4 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-docs v0.13.0
github.com/hashicorp/terraform-plugin-log v0.8.0 github.com/hashicorp/terraform-plugin-log v0.8.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.26.1 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/fatih/color v1.15.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // 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/errwrap v1.1.0 // indirect
github.com/hashicorp/go-checkpoint v0.5.0 // indirect github.com/hashicorp/go-checkpoint v0.5.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect