Skip to content

Commit e2d9a4b

Browse files
authored
Add documentation around Environment Variable configuration
1 parent a5e4faa commit e2d9a4b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docs/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,16 @@ provider "supabase" {
2525

2626
- `access_token` (String, Sensitive) Supabase access token
2727
- `endpoint` (String) Supabase API endpoint
28+
29+
## Authentication
30+
31+
Credentials can be provided using the `SUPABASE_ACCESS_TOKEN` environment variable.
32+
33+
For example:
34+
```tf
35+
provider "aws" {}
36+
```
37+
```shell
38+
% export SUPABASE_ACCESS_TOKEN="anaccesstoken"
39+
% terraform plan
40+
```

0 commit comments

Comments
 (0)