From 2d6984d048056017a7cff1284580f0167589d228 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Thu, 16 Nov 2023 08:02:25 -0600 Subject: [PATCH] Chore: modify provider documentation for api_key and api_secret --- env0/provider.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/env0/provider.go b/env0/provider.go index a0fbc5f5..48ae93d5 100644 --- a/env0/provider.go +++ b/env0/provider.go @@ -38,14 +38,14 @@ func Provider(version string) plugin.ProviderFunc { }, "api_key": { Type: schema.TypeString, - Description: "env0 API key. Instead of this field, it can also be set via the ENV0_API_KEY environment variable.", + Description: "env0 API key. This field can be removed from the provider block; instead of the field, you can set the value via the ENV0_API_KEY environment variable.", DefaultFunc: schema.EnvDefaultFunc(apiKeyEnv, nil), Optional: true, Sensitive: true, }, "api_secret": { Type: schema.TypeString, - Description: "env0 API secret. Instead of this field, it can also be set via the ENV0_API_SECRET environment variable.", + Description: "env0 API secret. This field can be removed from the provider block; instead of the field, you can set the value via the ENV0_API_SECRET environment variable.", DefaultFunc: schema.EnvDefaultFunc(apiSecretEnv, nil), Optional: true, Sensitive: true,