mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-14 09:58:09 -05:00
33 lines
996 B
Plaintext
33 lines
996 B
Plaintext
---
|
|
title: "Create Auth"
|
|
openapi: "POST /api/v1/integration-auth/access-token"
|
|
---
|
|
|
|
## Integration Authentication Parameters
|
|
|
|
The integration authentication endpoint is generic and can be used for all native integrations.
|
|
For specific integration parameters for a given service, please review the respective documentation below.
|
|
|
|
<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>
|