@pulumi/fastly 7.3.0 → 7.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getTlsActivationIds.d.ts +30 -0
- package/getTlsActivationIds.js +30 -0
- package/getTlsActivationIds.js.map +1 -1
- package/getTlsSubscriptionIds.d.ts +13 -0
- package/getTlsSubscriptionIds.js +13 -0
- package/getTlsSubscriptionIds.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/tlsSubscription.d.ts +6 -0
- package/tlsSubscription.js.map +1 -1
- package/types/input.d.ts +8 -0
- package/types/output.d.ts +8 -0
package/getTlsActivationIds.d.ts
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* Use this data source to get the list of TLS Activation identifiers in Fastly.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as fastly from "@pulumi/fastly";
|
|
10
|
+
*
|
|
11
|
+
* const exampleTlsActivationIds = fastly.getTlsActivationIds({
|
|
12
|
+
* certificateId: fastly_tls_certificate.example.id,
|
|
13
|
+
* });
|
|
14
|
+
* const exampleTlsActivation = exampleTlsActivationIds.then(exampleTlsActivationIds => .map(([, ]) => (fastly.getTlsActivation({
|
|
15
|
+
* id: __value,
|
|
16
|
+
* }))));
|
|
17
|
+
* export const activationDomains = exampleTlsActivation.map(a => (a.domain));
|
|
18
|
+
* ```
|
|
4
19
|
*/
|
|
5
20
|
export declare function getTlsActivationIds(args?: GetTlsActivationIdsArgs, opts?: pulumi.InvokeOptions): Promise<GetTlsActivationIdsResult>;
|
|
6
21
|
/**
|
|
@@ -31,6 +46,21 @@ export interface GetTlsActivationIdsResult {
|
|
|
31
46
|
}
|
|
32
47
|
/**
|
|
33
48
|
* Use this data source to get the list of TLS Activation identifiers in Fastly.
|
|
49
|
+
*
|
|
50
|
+
* ## Example Usage
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as fastly from "@pulumi/fastly";
|
|
55
|
+
*
|
|
56
|
+
* const exampleTlsActivationIds = fastly.getTlsActivationIds({
|
|
57
|
+
* certificateId: fastly_tls_certificate.example.id,
|
|
58
|
+
* });
|
|
59
|
+
* const exampleTlsActivation = exampleTlsActivationIds.then(exampleTlsActivationIds => .map(([, ]) => (fastly.getTlsActivation({
|
|
60
|
+
* id: __value,
|
|
61
|
+
* }))));
|
|
62
|
+
* export const activationDomains = exampleTlsActivation.map(a => (a.domain));
|
|
63
|
+
* ```
|
|
34
64
|
*/
|
|
35
65
|
export declare function getTlsActivationIdsOutput(args?: GetTlsActivationIdsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTlsActivationIdsResult>;
|
|
36
66
|
/**
|
package/getTlsActivationIds.js
CHANGED
|
@@ -7,6 +7,21 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Use this data source to get the list of TLS Activation identifiers in Fastly.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fastly from "@pulumi/fastly";
|
|
16
|
+
*
|
|
17
|
+
* const exampleTlsActivationIds = fastly.getTlsActivationIds({
|
|
18
|
+
* certificateId: fastly_tls_certificate.example.id,
|
|
19
|
+
* });
|
|
20
|
+
* const exampleTlsActivation = exampleTlsActivationIds.then(exampleTlsActivationIds => .map(([, ]) => (fastly.getTlsActivation({
|
|
21
|
+
* id: __value,
|
|
22
|
+
* }))));
|
|
23
|
+
* export const activationDomains = exampleTlsActivation.map(a => (a.domain));
|
|
24
|
+
* ```
|
|
10
25
|
*/
|
|
11
26
|
function getTlsActivationIds(args, opts) {
|
|
12
27
|
args = args || {};
|
|
@@ -18,6 +33,21 @@ function getTlsActivationIds(args, opts) {
|
|
|
18
33
|
exports.getTlsActivationIds = getTlsActivationIds;
|
|
19
34
|
/**
|
|
20
35
|
* Use this data source to get the list of TLS Activation identifiers in Fastly.
|
|
36
|
+
*
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as fastly from "@pulumi/fastly";
|
|
42
|
+
*
|
|
43
|
+
* const exampleTlsActivationIds = fastly.getTlsActivationIds({
|
|
44
|
+
* certificateId: fastly_tls_certificate.example.id,
|
|
45
|
+
* });
|
|
46
|
+
* const exampleTlsActivation = exampleTlsActivationIds.then(exampleTlsActivationIds => .map(([, ]) => (fastly.getTlsActivation({
|
|
47
|
+
* id: __value,
|
|
48
|
+
* }))));
|
|
49
|
+
* export const activationDomains = exampleTlsActivation.map(a => (a.domain));
|
|
50
|
+
* ```
|
|
21
51
|
*/
|
|
22
52
|
function getTlsActivationIdsOutput(args, opts) {
|
|
23
53
|
return pulumi.output(args).apply((a) => getTlsActivationIds(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsActivationIds.js","sourceRoot":"","sources":["../getTlsActivationIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getTlsActivationIds.js","sourceRoot":"","sources":["../getTlsActivationIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AA6BD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* Use this data source to get the list of IDs of TLS Subscriptions in Fastly.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as fastly from "@pulumi/fastly";
|
|
10
|
+
*
|
|
11
|
+
* const exampleTlsSubscriptionIds = fastly.getTlsSubscriptionIds({});
|
|
12
|
+
* const exampleTlsSubscription = exampleTlsSubscriptionIds.then(exampleTlsSubscriptionIds => .map(([, ]) => (fastly.getTlsSubscription({
|
|
13
|
+
* id: __value,
|
|
14
|
+
* }))));
|
|
15
|
+
* export const subscriptionDomains = exampleTlsSubscription.map(a => (a.certificateAuthority));
|
|
16
|
+
* ```
|
|
4
17
|
*/
|
|
5
18
|
export declare function getTlsSubscriptionIds(opts?: pulumi.InvokeOptions): Promise<GetTlsSubscriptionIdsResult>;
|
|
6
19
|
/**
|
package/getTlsSubscriptionIds.js
CHANGED
|
@@ -7,6 +7,19 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Use this data source to get the list of IDs of TLS Subscriptions in Fastly.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fastly from "@pulumi/fastly";
|
|
16
|
+
*
|
|
17
|
+
* const exampleTlsSubscriptionIds = fastly.getTlsSubscriptionIds({});
|
|
18
|
+
* const exampleTlsSubscription = exampleTlsSubscriptionIds.then(exampleTlsSubscriptionIds => .map(([, ]) => (fastly.getTlsSubscription({
|
|
19
|
+
* id: __value,
|
|
20
|
+
* }))));
|
|
21
|
+
* export const subscriptionDomains = exampleTlsSubscription.map(a => (a.certificateAuthority));
|
|
22
|
+
* ```
|
|
10
23
|
*/
|
|
11
24
|
function getTlsSubscriptionIds(opts) {
|
|
12
25
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsSubscriptionIds.js","sourceRoot":"","sources":["../getTlsSubscriptionIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getTlsSubscriptionIds.js","sourceRoot":"","sources":["../getTlsSubscriptionIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;IAE7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE,EACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "v7.3.
|
|
3
|
+
"version": "v7.3.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.3.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.3.2"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "v7.3.
|
|
3
|
+
"version": "v7.3.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.3.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v7.3.2"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/tlsSubscription.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ export declare class TlsSubscription extends pulumi.CustomResource {
|
|
|
62
62
|
readonly domains: pulumi.Output<string[]>;
|
|
63
63
|
/**
|
|
64
64
|
* Always delete subscription, even when active domains are present. Defaults to false.
|
|
65
|
+
*
|
|
66
|
+
* !> **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `forceUpdate` and `forceDestroy` will override these protections. Take extra care using these options if you are handling production traffic.
|
|
65
67
|
*/
|
|
66
68
|
readonly forceDestroy: pulumi.Output<boolean | undefined>;
|
|
67
69
|
/**
|
|
@@ -131,6 +133,8 @@ export interface TlsSubscriptionState {
|
|
|
131
133
|
domains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
132
134
|
/**
|
|
133
135
|
* Always delete subscription, even when active domains are present. Defaults to false.
|
|
136
|
+
*
|
|
137
|
+
* !> **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `forceUpdate` and `forceDestroy` will override these protections. Take extra care using these options if you are handling production traffic.
|
|
134
138
|
*/
|
|
135
139
|
forceDestroy?: pulumi.Input<boolean>;
|
|
136
140
|
/**
|
|
@@ -184,6 +188,8 @@ export interface TlsSubscriptionArgs {
|
|
|
184
188
|
domains: pulumi.Input<pulumi.Input<string>[]>;
|
|
185
189
|
/**
|
|
186
190
|
* Always delete subscription, even when active domains are present. Defaults to false.
|
|
191
|
+
*
|
|
192
|
+
* !> **Warning:** by default, the Fastly API protects you from disabling production traffic by preventing updating or deleting subscriptions with active domains. The use of `forceUpdate` and `forceDestroy` will override these protections. Take extra care using these options if you are handling production traffic.
|
|
187
193
|
*/
|
|
188
194
|
forceDestroy?: pulumi.Input<boolean>;
|
|
189
195
|
/**
|
package/tlsSubscription.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tlsSubscription.js","sourceRoot":"","sources":["../tlsSubscription.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"tlsSubscription.js","sourceRoot":"","sources":["../tlsSubscription.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -472,6 +472,10 @@ export interface ServiceComputeLoggingGc {
|
|
|
472
472
|
* How frequently the logs should be transferred, in seconds (Default 3600)
|
|
473
473
|
*/
|
|
474
474
|
period?: pulumi.Input<number>;
|
|
475
|
+
/**
|
|
476
|
+
* The ID of your Google Cloud Platform project
|
|
477
|
+
*/
|
|
478
|
+
projectId?: pulumi.Input<string>;
|
|
475
479
|
/**
|
|
476
480
|
* The secret key associated with the target gcs bucket on your account. You may optionally provide this secret via an environment variable, `FASTLY_GCS_SECRET_KEY`. A typical format for the key is PEM format, containing actual newline characters where required
|
|
477
481
|
*/
|
|
@@ -1864,6 +1868,10 @@ export interface ServiceVclLoggingGc {
|
|
|
1864
1868
|
* Where in the generated VCL the logging call should be placed.
|
|
1865
1869
|
*/
|
|
1866
1870
|
placement?: pulumi.Input<string>;
|
|
1871
|
+
/**
|
|
1872
|
+
* The ID of your Google Cloud Platform project
|
|
1873
|
+
*/
|
|
1874
|
+
projectId?: pulumi.Input<string>;
|
|
1867
1875
|
/**
|
|
1868
1876
|
* Name of a condition to apply this logging.
|
|
1869
1877
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -517,6 +517,10 @@ export interface ServiceComputeLoggingGc {
|
|
|
517
517
|
* How frequently the logs should be transferred, in seconds (Default 3600)
|
|
518
518
|
*/
|
|
519
519
|
period?: number;
|
|
520
|
+
/**
|
|
521
|
+
* The ID of your Google Cloud Platform project
|
|
522
|
+
*/
|
|
523
|
+
projectId?: string;
|
|
520
524
|
/**
|
|
521
525
|
* The secret key associated with the target gcs bucket on your account. You may optionally provide this secret via an environment variable, `FASTLY_GCS_SECRET_KEY`. A typical format for the key is PEM format, containing actual newline characters where required
|
|
522
526
|
*/
|
|
@@ -1909,6 +1913,10 @@ export interface ServiceVclLoggingGc {
|
|
|
1909
1913
|
* Where in the generated VCL the logging call should be placed.
|
|
1910
1914
|
*/
|
|
1911
1915
|
placement?: string;
|
|
1916
|
+
/**
|
|
1917
|
+
* The ID of your Google Cloud Platform project
|
|
1918
|
+
*/
|
|
1919
|
+
projectId?: string;
|
|
1912
1920
|
/**
|
|
1913
1921
|
* Name of a condition to apply this logging.
|
|
1914
1922
|
*/
|