UNPKG

@upcloud/pulumi-upcloud

Version:

A Pulumi package for creating and managing UpCloud resources.

31 lines (30 loc) 1.03 kB
/** * Password for UpCloud API user. Can also be configured using the `UPCLOUD_PASSWORD` environment variable. */ export declare const password: string | undefined; /** * The duration (in seconds) that the provider waits for an HTTP request towards UpCloud API to complete. Defaults to 120 * seconds */ export declare const requestTimeoutSec: number | undefined; /** * Maximum number of retries */ export declare const retryMax: number | undefined; /** * Maximum time to wait between retries */ export declare const retryWaitMaxSec: number | undefined; /** * Minimum time to wait between retries */ export declare const retryWaitMinSec: number | undefined; /** * Token for authenticating to UpCloud API. Can also be configured using the `UPCLOUD_TOKEN` environment variable. * (EXPERIMENTAL) */ export declare const token: string | undefined; /** * UpCloud username with API access. Can also be configured using the `UPCLOUD_USERNAME` environment variable. */ export declare const username: string | undefined;