From 6261e0b7d838d6ac0bf08475826b2b064339dde4 Mon Sep 17 00:00:00 2001 From: Soumitr Pandey <31522876+sfc-gh-spandey@users.noreply.github.com> Date: Mon, 28 Sep 2020 13:07:20 -0400 Subject: [PATCH] specify correct username env var in index.md (#259) Based on https://github.com/chanzuckerberg/terraform-provider-snowflake/blob/master/pkg/provider/provider.go#L29 It seems like accidentally the env var was mentioned as `SNOWFLAKE_PASSWORD` instead of `SNOWFLAKE_USER` for the username --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 7294b00060..0876ddf0a9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -80,7 +80,7 @@ In addition to [generic `provider` arguments](https://www.terraform.io/docs/conf * `account` - (required) The name of the Snowflake account. Can also come from the `SNOWFLAKE_ACCOUNT` environment variable. * `username` - (required) Username for username+password authentication. Can come from the - `SNOWFLAKE_PASSWORD` environment variable. + `SNOWFLAKE_USER` environment variable. * `region` - (required) [Snowflake region](https://docs.snowflake.com/en/user-guide/intro-regions.html) to use. Can be source from the `SNOWFLAKE_REGION` environment variable. * `password` - (optional) Password for username+password auth. Cannot be used with `browser_auth` or `private_key_path`. Can be source from `SNOWFLAKE_PASSWORD` environment variable.