UNPKG

@pulumi/kong

Version:

A Pulumi package for creating and managing Kong resources.

33 lines (32 loc) 970 B
/** * An basic auth password for kong admin */ export declare const kongAdminPassword: string | undefined; /** * API key for the kong api (Enterprise Edition) */ export declare const kongAdminToken: string | undefined; /** * The address of the kong admin url e.g. http://localhost:8001 */ export declare const kongAdminUri: string | undefined; /** * An basic auth user for kong admin */ export declare const kongAdminUsername: string | undefined; /** * API key for the kong api (if you have locked it down) */ export declare const kongApiKey: string | undefined; /** * Workspace context (Enterprise Edition) */ export declare const kongWorkspace: string | undefined; /** * Should plugins `configJson` field strictly match plugin configuration */ export declare const strictPluginsMatch: boolean | undefined; /** * Whether to skip tls verify for https kong api endpoint using self signed or untrusted certs */ export declare const tlsSkipVerify: boolean;