@pulumi/yandex
Version:
A Pulumi package for creating and managing yandex cloud resources.
66 lines (65 loc) • 2.31 kB
TypeScript
/**
* ID of Yandex.Cloud tenant.
*/
export declare const cloudId: string | undefined;
/**
* The API endpoint for Yandex.Cloud SDK client.
*/
export declare const endpoint: string | undefined;
/**
* The default folder ID where resources will be placed.
*/
export declare const folderId: string | undefined;
/**
* Explicitly allow the provider to perform "insecure" SSL requests. If omitted,default value is `false`.
*/
export declare const insecure: boolean | undefined;
/**
* The maximum number of times an API request is being executed. If the API request still fails, an error is thrown.
*/
export declare const maxRetries: number | undefined;
export declare const organizationId: string | undefined;
/**
* Disable use of TLS. Default value is `false`.
*/
export declare const plaintext: boolean | undefined;
/**
* Either the path to or the contents of a Service Account key file in JSON format.
*/
export declare const serviceAccountKeyFile: string | undefined;
/**
* Yandex.Cloud storage service access key. Used when a storage data/resource doesn't have an access key explicitly
* specified.
*/
export declare const storageAccessKey: string | undefined;
/**
* Yandex.Cloud storage service endpoint. Default is storage.yandexcloud.net
*/
export declare const storageEndpoint: string | undefined;
/**
* Yandex.Cloud storage service secret key. Used when a storage data/resource doesn't have a secret key explicitly
* specified.
*/
export declare const storageSecretKey: string | undefined;
/**
* The access token for API operations.
*/
export declare const token: string | undefined;
/**
* Yandex.Cloud Message Queue service access key. Used when a message queue resource doesn't have an access key explicitly
* specified.
*/
export declare const ymqAccessKey: string | undefined;
/**
* Yandex.Cloud Message Queue service endpoint. Default is message-queue.api.cloud.yandex.net
*/
export declare const ymqEndpoint: string | undefined;
/**
* Yandex.Cloud Message Queue service secret key. Used when a message queue resource doesn't have a secret key explicitly
* specified.
*/
export declare const ymqSecretKey: string | undefined;
/**
* The zone where operations will take place. Examples are ru-central1-a, ru-central2-c, etc.
*/
export declare const zone: string | undefined;