/** * API Token for the SD-WAN Manager. Can be used instead of username and password. This can also be set as the `SDWAN_API_TOKEN` environment variable. */ export declare const apiToken: string | undefined; /** * When enabled, Terraform will detect when a configuration group or policy group device is out of date during refresh and trigger a re-deploy on next apply. This can also be set as the `SDWAN_DEPLOY_ON_OUT_OF_DATE` environment variable. Defaults to `true`. */ export declare const deployOnOutOfDate: boolean | undefined; /** * Allow insecure HTTPS client. This can also be set as the `SDWAN_INSECURE` environment variable. Defaults to `true`. */ export declare const insecure: boolean | undefined; /** * Password for the SD-WAN Manager account. This can also be set as the `SDWAN_PASSWORD` environment variable. */ export declare const password: string | undefined; /** * Number of retries for REST API calls. This can also be set as the `SDWAN_RETRIES` environment variable. Defaults to `3`. */ export declare const retries: number | undefined; /** * Timeout in seconds for asynchronous tasks. This can also be set as the `SDWAN_TASK_TIMEOUT` environment variable. Defaults to `1500`. */ export declare const taskTimeout: number | undefined; /** * URL of the Cisco SD-WAN Manager device. This can also be set as the `SDWAN_URL` environment variable. */ export declare const url: string | undefined; /** * Username for the SD-WAN Manager account. This can also be set as the `SDWAN_USERNAME` environment variable. */ export declare const username: string | undefined; //# sourceMappingURL=vars.d.ts.map