Merged in feature/textExtractionsPart4 (pull request #197)

implement GET /identity

* GET /identity
This commit is contained in:
Jay Brown
2025-12-16 04:26:06 +00:00
parent ab7072ac90
commit dae7bd4cc6
19 changed files with 1811 additions and 315 deletions
+4 -5
View File
@@ -200,13 +200,14 @@ COGNITO_DOMAIN=your-cognito-domain # AWS Cognito domain name
#### Authorization (Required for RBAC)
```bash
PERMIT_IO_API_KEY=permit_key_xxxxxxx # Permit.io API key for RBAC
PERMIT_IO_PROJECT_ID=default # Permit.io project ID (default: "default")
PERMIT_IO_ENV_ID=dev # Permit.io environment ID (e.g., dev, staging, production)
PERMIT_IO_API_KEY=permit_key_xxxxxxx # Permit.io API key for RBAC (project/env derived from key)
PERMIT_IO_TENANT=default # Permit.io tenant identifier (default: "default")
PERMIT_IO_PDP_URL=http://localhost:7766 # Permit.io Policy Decision Point URL - can use cloud version optionally
```
Note: The Permit.io project and environment IDs are automatically derived from the API key
using the `/v2/api-key/scope` endpoint. Use a project-level or environment-level API key.
### Optional Environment Variables
#### Development & Testing
@@ -277,8 +278,6 @@ QUERY_VERSION_SYNC_URL=http://localhost:4566/queue/us-east-1/000000000000/query_
# Development auth (optional)
PERMIT_IO_API_KEY=test-key
PERMIT_IO_PROJECT_ID=default
PERMIT_IO_ENV_ID=dev
PERMIT_IO_TENANT=default
PERMIT_IO_PDP_URL=http://localhost:7766
```