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: config.schema.json
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -621,6 +621,21 @@
621
621
"description": "Milliseconds to wait for a connection before timing out."
622
622
}
623
623
}
624
+
},
625
+
"awsIamAuth": {
626
+
"type": "object",
627
+
"description": "Authenticate to Amazon RDS/Aurora with an IAM auth token instead of a static password. When enabled, a short-lived token is generated for each new connection from the AWS SDK default credential chain, so no password is stored. Requires the discrete `host`/`port`/`user` fields (or the `PGHOST`/`PGPORT`/`PGUSER` environment variables) rather than a `connectionString`, requires TLS (`ssl` defaults to `true` when omitted), and needs the optional `@aws-sdk/rds-signer` dependency to be installed.",
628
+
"properties": {
629
+
"enabled": {
630
+
"type": "boolean",
631
+
"description": "Enable IAM token authentication for the PostgreSQL connection."
632
+
},
633
+
"region": {
634
+
"type": "string",
635
+
"description": "AWS region of the RDS/Aurora instance. Falls back to the `AWS_REGION` / `AWS_DEFAULT_REGION` environment variables, then the AWS SDK's default region resolution."
0 commit comments