@upcloud/pulumi-upcloud
Version:
A Pulumi package for creating and managing UpCloud resources.
29 lines (28 loc) • 1.12 kB
TypeScript
/**
* 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 or using the system keyring. Use `upctl account login` command to save a token to the system keyring. (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;