From 023dbf76629466a0bedcc864f7234595d96d9903 Mon Sep 17 00:00:00 2001 From: Pat Patterson Date: Wed, 28 Aug 2024 12:30:23 -0700 Subject: [PATCH] Explain that users should not need to set the endpoint --- b2/provider.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/b2/provider.go b/b2/provider.go index 749d8c8..d490d16 100644 --- a/b2/provider.go +++ b/b2/provider.go @@ -50,7 +50,8 @@ func New(version string, exec string) func() *schema.Provider { DefaultFunc: schema.EnvDefaultFunc("B2_APPLICATION_KEY", nil), }, "endpoint": { - Description: "B2 endpoint - production or custom URL (B2_ENDPOINT env)", + Description: "B2 endpoint - the string 'production' or a custom B2 API URL (B2_ENDPOINT env)." + + " Defaults to 'production'. You should not need to set this unless you work at Backblaze.", Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("B2_ENDPOINT", "production"),