You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/node-postgres/README.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,24 @@ Amazon Aurora DSQL is a cloud-native distributed database with PostgreSQL compat
17
17
18
18
The Aurora DSQL Connector for node-postgres bridges this gap by implementing an authentication middleware that works seamlessly with node-postgres. This approach allows developers to maintain their existing node-postgres code while gaining secure IAM-based access to Aurora DSQL clusters through automated token management.
19
19
20
+
### What is Aurora DSQL Authentication?
21
+
22
+
In Aurora DSQL, authentication involves:
23
+
24
+
-**IAM Authentication:** All connections use IAM-based authentication with time-limited tokens
25
+
-**Token Generation:** Authentication tokens are generated using AWS credentials and have configurable lifetimes
26
+
27
+
The Aurora DSQL Connector for node-postgres is designed to understand these requirements and automatically generate IAM authentication tokens when establishing connections.
28
+
20
29
### Features
21
30
22
31
-**Automatic IAM Authentication** - Handles DSQL token generation and refresh
23
32
-**Built on node-postgres** - Leverages the popular PostgreSQL client for Node.js
33
+
-**Seamless Integration** - Works with existing node-postgres connection patterns
24
34
-**Region Auto-Discovery** - Extracts AWS region from DSQL cluster hostname
25
35
-**Full TypeScript Support** - Provides full type safety
26
-
-**Custom Credentials** - Support for custom AWS credential providers
Copy file name to clipboardExpand all lines: packages/postgres-js/README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The Aurora DSQL Connector for Postgres.js is designed as an authentication plugi
12
12
Postgres.js client to enable applications to authenticate with Amazon Aurora DSQL using IAM credentials. The connector
13
13
does not connect directly to the database, but provides seamless IAM authentication on top of the underlying Postgres.js driver.
14
14
15
-
## Benefits of the Connector
15
+
## About the Connector
16
16
17
17
Amazon Aurora DSQL is a distributed SQL database service that provides high availability and scalability for
18
18
PostgreSQL-compatible applications. Aurora DSQL requires IAM-based authentication with time-limited tokens that
@@ -24,21 +24,33 @@ client that handles IAM token generation, allowing users to connect to Aurora DS
24
24
The Aurora DSQL Connector for Postgres.js works with most versions of Postgres.js. Users provide their own version by installing
25
25
Postgres.js directly.
26
26
27
+
### What is Aurora DSQL Authentication?
28
+
29
+
In Aurora DSQL, authentication involves:
30
+
31
+
-**IAM Authentication:** All connections use IAM-based authentication with time-limited tokens
32
+
-**Token Generation:** Authentication tokens are generated using AWS credentials and have configurable lifetimes
33
+
34
+
The Aurora DSQL Connector for Postgres.js is designed to understand these requirements and automatically generate IAM authentication tokens when establishing connections.
35
+
27
36
### Features
28
37
29
38
-**Automatic IAM Authentication** - Handles DSQL token generation and refresh
30
39
-**Built on Postgres.js** - Leverages the fast PostgreSQL client for Node.js
40
+
-**Seamless Integration** - Works with existing Postgres.js connection patterns
31
41
-**Region Auto-Discovery** - Extracts AWS region from DSQL cluster hostname
32
42
-**Full TypeScript Support** - Provides full type safety
33
-
-**Custom Credentials** - Support for custom AWS credential providers
0 commit comments