@pulumi/ise
Version:
A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1
21 lines (20 loc) • 811 B
TypeScript
/**
* Allow insecure HTTPS client. This can also be set as the ISE_INSECURE environment variable. Defaults to `true`.
*/
export declare const insecure: boolean | undefined;
/**
* Password for the ISE instance. This can also be set as the ISE_PASSWORD environment variable.
*/
export declare const password: string | undefined;
/**
* Number of retries for REST API calls. This can also be set as the ISE_RETRIES environment variable. Defaults to `3`.
*/
export declare const retries: number | undefined;
/**
* URL of the Cisco ISE instance. This can also be set as the ISE_URL environment variable.
*/
export declare const url: string | undefined;
/**
* Username for the ISE instance. This can also be set as the ISE_USERNAME environment variable.
*/
export declare const username: string | undefined;