@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
17 lines (16 loc) • 549 B
TypeScript
/**
* A GUID identifying the API key used to authenticate with the StrongDM API.
*/
export declare const apiAccessKey: string | undefined;
/**
* A base64 encoded secret key used to authenticate with the StrongDM API.
*/
export declare const apiSecretKey: string | undefined;
/**
* The host and port of the StrongDM API endpoint.
*/
export declare const host: string | undefined;
/**
* Whether experienced rate limits should cause the client to sleep instead of erroring out
*/
export declare const retryRateLimitErrors: boolean | undefined;