cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Credential vault for tokens and passwords in workflows

AgataWlodarczyk
Community Team
Community Team

Some of the actions/tasks may require credentials.
Will workflows use a credential vault for tokens and passwords?
 

 

When passion meets people magic and innovation happen.
2 REPLIES 2

michaelwinkler
Dynatrace Advisor
Dynatrace Advisor

Workflow actions for integration typically require connecting to third-party systems and coming with their own settings schema. Those connections are then managed in Dynatrace settings 2.0. Ad-hoc scripts can leverage both settings and the credential vault via the SDKs.

Michael

lawrence_cuneaz
Dynatrace Advisor
Dynatrace Advisor

For reference, you can access the Credential Vault by following the following API instructions.
https://developer.dynatrace.com/reference/sdks/client-classic-environment-v2/#getcredentialsdetails 

import { credentialVaultClient } from "@dynatrace-sdk/client-classic-environment-v2";

const data = await credentialVaultClient.getCredentialsDetails({
  id: "...",
});

Featured Posts