@crowdstrike/pulumi
Version:
A Pulumi package for creating and managing CrowdStrike resources. Based on terraform-provider-crowdstrike: version v0.0.4
20 lines (19 loc) • 758 B
TypeScript
/**
* Falcon Client Id for authenticating to the CrowdStrike APIs. Will use FALCON_CLIENT_ID environment variable when left
* blank.
*/
export declare const clientId: string | undefined;
/**
* Falcon Client Secret used for authenticating to the CrowdStrike APIs. Will use FALCON_CLIENT_SECRET environment variable
* when left blank.
*/
export declare const clientSecret: string | undefined;
/**
* Falcon Cloud to authenticate to. Valid values are autodiscover, us-1, us-2, eu-1, us-gov-1. Will use FALCON_CLOUD
* environment variable when left blank.
*/
export declare const cloud: string | undefined;
/**
* For MSSP Master CIDs, optionally lock the token to act on behalf of this member CID
*/
export declare const memberCid: string | undefined;