Secret management platform with Infisical
Infisical manages secrets and environment variables across teams, infrastructure, and CI/CD pipelines with end-to-end encryption.
| Variable | Description |
|---|---|
{{INFISICAL_URL}} | Infisical API URL |
{{INFISICAL_TOKEN}} | Service token or machine identity token |
curl -s "{{INFISICAL_URL}}/api/v3/secrets/raw?workspaceId=<ws_id>&environment=dev" \
-H "Authorization: Bearer {{INFISICAL_TOKEN}}"
curl -s -X POST "{{INFISICAL_URL}}/api/v3/secrets/raw/<secret_name>" \
-H "Authorization: Bearer {{INFISICAL_TOKEN}}" \
-H "Content-Type: application/json" \
-d '{"workspaceId": "<ws_id>", "environment": "dev", "secretValue": "my-value"}'