From ea28860388dbabddd6486c79ac3939a47036e25f Mon Sep 17 00:00:00 2001 From: nleiva Date: Fri, 29 Apr 2022 01:29:18 -0400 Subject: [PATCH] Fix doc typos --- docs/index.md | 4 ++-- internal/provider/provider.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.md b/docs/index.md index a8f37a6..7a281fc 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,5 +24,5 @@ provider "nautobot" { ### Required -- `token` (String, Sensitive) Customer/user-specific authorization token for the Shoreline API server. -- `url` (String) URL for Nautobot API server. It should be of the form https:///server.example.org/api/. +- `token` (String, Sensitive) Customer/user-specific authorization API token for Nautobot. +- `url` (String) URL for the Nautobot server. It should be of the form https:///server.example.org/api/. diff --git a/internal/provider/provider.go b/internal/provider/provider.go index dad3de7..f80615e 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -35,14 +35,14 @@ func New(version string) func() *schema.Provider { Required: true, DefaultFunc: schema.EnvDefaultFunc("NAUTOBOT_URL", nil), ValidateFunc: validation.IsURLWithHTTPorHTTPS, - Description: "URL for Nautobot API server. It should be of the form https:///server.example.org/api/.", + Description: "URL for the Nautobot server. It should be of the form https:///server.example.org/api/.", }, "token": { Type: schema.TypeString, Required: true, Sensitive: true, DefaultFunc: schema.EnvDefaultFunc("NAUTOBOT_TOKEN", nil), - Description: "Customer/user-specific authorization token for the Shoreline API server.", + Description: "Customer/user-specific authorization API token for Nautobot.", }, }, DataSourcesMap: map[string]*schema.Resource{