Skip to content

Commit

Permalink
basic doc on authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking committed May 17, 2019
1 parent a4c8708 commit 5dfffe3
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@

This is a terraform provider plugin for managing [Snowflake](http://snowflakedb.com) accounts.

## Setup (to use)
## Install

The easiest way is to run this command:

Expand All @@ -24,6 +24,26 @@ You can also just download a binary from our [releases](https://github.com/chanz

TODO fogg config

## Authentication

We currently only support username + password auth and suggest that you only do so via environment variables. So a config something like–

```hcl
provider "snowflake" {
account = "..."
role = "..."
region = "..."
}
```

and

```shell
export SNOWFLAKE_USER='...'
export SNOWFLAKE_PASSWORD='...'
terraform ...
```

## Resources

We support managing a subset of snowflakedb resources, with a focus on access control and management.
Expand Down

0 comments on commit 5dfffe3

Please sign in to comment.