UNPKG

pulumi-netbox

Version:

A Pulumi package for creating and managing Netbox resources.

24 lines (23 loc) 743 B
/** * Flag to set whether to allow https with invalid certificates */ export declare const allowInsecureHttps: boolean | undefined; /** * Netbox API authentication token */ export declare const apiToken: string | undefined; /** * Set these header on all requests to Netbox */ export declare const headers: { [key: string]: any; } | undefined; /** * Location of Netbox server including scheme and optional port */ export declare const serverUrl: string | undefined; /** * If true, do not try to determine the running Netbox version at provider startup. Disables warnings about possibly * unsupported Netbox version. Also useful for local testing on terraform plans. */ export declare const skipVersionCheck: boolean | undefined;