mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
31 lines
904 B
Plaintext
31 lines
904 B
Plaintext
---
|
|
title: "Create Auth"
|
|
openapi: "POST /api/v1/integration-auth/access-token"
|
|
---
|
|
|
|
## Integration Auth Parameters
|
|
|
|
We have a generic endpoints for creating integration auth objects. These are the parameters required for each integration.
|
|
<Tabs>
|
|
<Tab title="AWS Secrets manager">
|
|
<ParamField body="integration" type="string" initialValue="aws-secret-manager" required>
|
|
This value must be **aws-secret-manager**.
|
|
</ParamField>
|
|
<ParamField body="workspaceId" type="string" required>
|
|
Infisical project id for the integration.
|
|
</ParamField>
|
|
<ParamField body="accessId" type="string" required>
|
|
The AWS IAM User Access ID.
|
|
</ParamField>
|
|
<ParamField body="accessToken" type="string" required>
|
|
The AWS IAM User Access Secret Key.
|
|
</ParamField>
|
|
</Tab>
|
|
<Tab title="GCP Secrets manager">
|
|
Coming Soon
|
|
</Tab>
|
|
<Tab title="Heroku">
|
|
Coming Soon
|
|
</Tab>
|
|
</Tabs>
|