Skip to content

Commit

Permalink
Merge pull request #161 from supabase/fix/airtable_pat_docs
Browse files Browse the repository at this point in the history
docs: clarify how to set airtable PAT
  • Loading branch information
olirice authored Sep 28, 2023
2 parents a598916 + 6d8de37 commit ce16842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/airtable.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ By default, Postgres stores FDW credentials inide `pg_catalog.pg_foreign_server`
insert into vault.secrets (name, secret)
values (
'airtable',
'YOUR_SECRET'
'<Airtable API Key or PAT>' -- Airtable API key or Personal Access Token (PAT)
)
returning key_id;
```
Expand All @@ -53,7 +53,7 @@ We need to provide Postgres with the credentials to connect to Airtable, and any
foreign data wrapper airtable_wrapper
options (
api_url 'https://api.airtable.com/v0', -- Airtable API url, optional
api_key '<Airtable API Key>' -- Airtable API key, required
api_key '<Airtable API Key or PAT>' -- Airtable API key or Personal Access Token (PAT), required
);
```

Expand Down

0 comments on commit ce16842

Please sign in to comment.