UNPKG

@pulumiverse/cpln

Version:

A Pulumi package for creating and managing Control Plane (cpln) resources.

27 lines (26 loc) 1.18 kB
/** * The Control Plane Data Service API endpoint. Default is: https://api.cpln.io. Can be specified with the CPLN_ENDPOINT * environment variable. */ export declare const endpoint: string | undefined; /** * The Control Plane org that this provider will perform actions against. Can be specified with the CPLN_ORG environment * variable. */ export declare const org: string | undefined; /** * The user/service account profile that this provider will use to authenticate to the data service. Can be specified with * the CPLN_PROFILE environment variable. */ export declare const profile: string | undefined; /** * A generated token that can be used to authenticate to the data service API. Can be specified with the CPLN_REFRESH_TOKEN * environment variable. Used when the provider is required to create an org or update the authConfig property. Refer to * the section above on how to obtain the refresh token. */ export declare const refreshToken: string | undefined; /** * A generated token that can be used to authenticate to the data service API. Can be specified with the CPLN_TOKEN * environment variable. */ export declare const token: string | undefined;