@pulumi/fastly
Version:
A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4
20 lines (19 loc) • 720 B
TypeScript
/**
* Fastly API Key from https://app.fastly.com/#account
*/
export declare const apiKey: string | undefined;
/**
* Fastly API URL
*/
export declare const baseUrl: string | undefined;
/**
* Set this to `true` to disable HTTP/1.x fallback mechanism that the underlying Go library will attempt upon connection to
* `api.fastly.com:443` by default. This may slightly improve the provider's performance and reduce unnecessary TLS
* handshakes. Default: `false`
*/
export declare const forceHttp2: boolean | undefined;
/**
* Set to `true` if your configuration only consumes data sources that do not require authentication, such as
* `fastly.getFastlyIpRanges`
*/
export declare const noAuth: boolean | undefined;