Create an External Secrets Manager
Creates a new External Secrets Manager instance within your Fivetran account.
Request schema
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
The ESM provider type. Supported values: AWS_SECRET_MANAGER, AZURE_KEY_VAULT, HASHICORP_VAULT.
The name of the External Secrets Manager instance. Must be unique within the account.
Whether this External Secrets Manager instance is compatible with Hybrid Deployment environments.
POST /v1/external-secrets-managers HTTP/1.1 Accept: application/json Authorization: BasicContent-Type: application/json Host: api.fivetran.com Content-Length: 119 { "type": "AWS_SECRET_MANAGER", "name": "My AWS Secrets Manager", "config": {}, "is_hybrid_deployment": false }
Responses
201
Response status code
Response status text
Response containing External Secrets Manager instance details
The unique identifier of the ESM instance
The type of ESM
The name of the ESM instance
Provider-specific configuration
additional property
Timestamp when the ESM instance was created
Whether this ESM is compatible with hybrid deployment environments
Timestamp when the ESM instance was last updated
{ "code": "Created", "message": "External Secrets Manager has been created", "data": { "id": "string", "type": "AZURE_KEY_VAULT", "name": "string", "config": { "property1": {}, "property2": {} }, "created_at": "2019-08-24T14:15:22Z", "is_hybrid_deployment_compatible": true, "updated_at": "2019-08-24T14:15:22Z" } }