@pulumiverse/vercel 1.3.0 → 1.9.0
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/dnsRecord.d.ts +6 -4
- package/dnsRecord.js +6 -4
- package/dnsRecord.js.map +1 -1
- package/edgeConfig.d.ts +111 -0
- package/edgeConfig.js +102 -0
- package/edgeConfig.js.map +1 -0
- package/edgeConfigSchema.d.ts +85 -0
- package/edgeConfigSchema.js +79 -0
- package/edgeConfigSchema.js.map +1 -0
- package/edgeConfigToken.d.ts +145 -0
- package/edgeConfigToken.js +120 -0
- package/edgeConfigToken.js.map +1 -0
- package/getDeployment.d.ts +94 -0
- package/getDeployment.js +52 -0
- package/getDeployment.js.map +1 -0
- package/getEdgeConfig.d.ts +78 -0
- package/getEdgeConfig.js +52 -0
- package/getEdgeConfig.js.map +1 -0
- package/getEdgeConfigSchema.d.ts +74 -0
- package/getEdgeConfigSchema.js +48 -0
- package/getEdgeConfigSchema.js.map +1 -0
- package/getEdgeConfigToken.d.ts +104 -0
- package/getEdgeConfigToken.js +59 -0
- package/getEdgeConfigToken.js.map +1 -0
- package/getEndpointVerification.d.ts +62 -0
- package/getEndpointVerification.js +44 -0
- package/getEndpointVerification.js.map +1 -0
- package/getFile.d.ts +0 -4
- package/getFile.js +0 -4
- package/getFile.js.map +1 -1
- package/getLogDrain.d.ts +116 -0
- package/getLogDrain.js +57 -0
- package/getLogDrain.js.map +1 -0
- package/getProject.d.ts +48 -4
- package/getProject.js +0 -4
- package/getProject.js.map +1 -1
- package/getSharedEnvironmentVariable.d.ts +0 -4
- package/getSharedEnvironmentVariable.js +0 -4
- package/getSharedEnvironmentVariable.js.map +1 -1
- package/index.d.ts +33 -0
- package/index.js +44 -1
- package/index.js.map +1 -1
- package/logDrain.d.ts +206 -0
- package/logDrain.js +135 -0
- package/logDrain.js.map +1 -0
- package/package.json +1 -1
- package/project.d.ts +132 -2
- package/project.js +22 -2
- package/project.js.map +1 -1
- package/projectDomain.d.ts +0 -2
- package/projectDomain.js +0 -2
- package/projectDomain.js.map +1 -1
- package/projectEnvironmentVariable.d.ts +6 -4
- package/projectEnvironmentVariable.js +6 -4
- package/projectEnvironmentVariable.js.map +1 -1
- package/sharedEnvironmentVariable.d.ts +1 -3
- package/sharedEnvironmentVariable.js +1 -3
- package/sharedEnvironmentVariable.js.map +1 -1
- package/types/input.d.ts +33 -1
- package/types/output.d.ts +43 -4
- package/webhook.d.ts +127 -0
- package/webhook.js +100 -0
- package/webhook.js.map +1 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getEdgeConfigTokenOutput = exports.getEdgeConfigToken = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about an existing Edge Config Token.
|
|
10
|
+
*
|
|
11
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
12
|
+
*
|
|
13
|
+
* An Edge Config token is used to authenticate against an Edge Config's endpoint.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as vercel from "@pulumi/vercel";
|
|
20
|
+
*
|
|
21
|
+
* const test = vercel.getEdgeConfigToken({
|
|
22
|
+
* edgeConfigId: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
23
|
+
* token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
function getEdgeConfigToken(args, opts) {
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("vercel:index/getEdgeConfigToken:getEdgeConfigToken", {
|
|
30
|
+
"edgeConfigId": args.edgeConfigId,
|
|
31
|
+
"teamId": args.teamId,
|
|
32
|
+
"token": args.token,
|
|
33
|
+
}, opts);
|
|
34
|
+
}
|
|
35
|
+
exports.getEdgeConfigToken = getEdgeConfigToken;
|
|
36
|
+
/**
|
|
37
|
+
* Provides information about an existing Edge Config Token.
|
|
38
|
+
*
|
|
39
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
40
|
+
*
|
|
41
|
+
* An Edge Config token is used to authenticate against an Edge Config's endpoint.
|
|
42
|
+
*
|
|
43
|
+
* ## Example Usage
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as vercel from "@pulumi/vercel";
|
|
48
|
+
*
|
|
49
|
+
* const test = vercel.getEdgeConfigToken({
|
|
50
|
+
* edgeConfigId: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
51
|
+
* token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
function getEdgeConfigTokenOutput(args, opts) {
|
|
56
|
+
return pulumi.output(args).apply((a) => getEdgeConfigToken(a, opts));
|
|
57
|
+
}
|
|
58
|
+
exports.getEdgeConfigTokenOutput = getEdgeConfigTokenOutput;
|
|
59
|
+
//# sourceMappingURL=getEdgeConfigToken.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEdgeConfigToken.js","sourceRoot":"","sources":["../getEdgeConfigToken.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC;AAiDD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a verification code that can be used to prove ownership over an API.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as vercel from "@pulumi/vercel";
|
|
10
|
+
*
|
|
11
|
+
* const example = vercel.getEndpointVerification({});
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare function getEndpointVerification(args?: GetEndpointVerificationArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointVerificationResult>;
|
|
15
|
+
/**
|
|
16
|
+
* A collection of arguments for invoking getEndpointVerification.
|
|
17
|
+
*/
|
|
18
|
+
export interface GetEndpointVerificationArgs {
|
|
19
|
+
/**
|
|
20
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
21
|
+
*/
|
|
22
|
+
teamId?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* A collection of values returned by getEndpointVerification.
|
|
26
|
+
*/
|
|
27
|
+
export interface GetEndpointVerificationResult {
|
|
28
|
+
/**
|
|
29
|
+
* The ID of this resource.
|
|
30
|
+
*/
|
|
31
|
+
readonly id: string;
|
|
32
|
+
/**
|
|
33
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
34
|
+
*/
|
|
35
|
+
readonly teamId: string;
|
|
36
|
+
/**
|
|
37
|
+
* A verification code that should be set in the `x-vercel-verify` response header for your API. This is used to verify that the endpoint belongs to you.
|
|
38
|
+
*/
|
|
39
|
+
readonly verificationCode: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Provides a verification code that can be used to prove ownership over an API.
|
|
43
|
+
*
|
|
44
|
+
* ## Example Usage
|
|
45
|
+
*
|
|
46
|
+
* ```typescript
|
|
47
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
48
|
+
* import * as vercel from "@pulumi/vercel";
|
|
49
|
+
*
|
|
50
|
+
* const example = vercel.getEndpointVerification({});
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
export declare function getEndpointVerificationOutput(args?: GetEndpointVerificationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEndpointVerificationResult>;
|
|
54
|
+
/**
|
|
55
|
+
* A collection of arguments for invoking getEndpointVerification.
|
|
56
|
+
*/
|
|
57
|
+
export interface GetEndpointVerificationOutputArgs {
|
|
58
|
+
/**
|
|
59
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
60
|
+
*/
|
|
61
|
+
teamId?: pulumi.Input<string>;
|
|
62
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getEndpointVerificationOutput = exports.getEndpointVerification = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a verification code that can be used to prove ownership over an API.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as vercel from "@pulumi/vercel";
|
|
16
|
+
*
|
|
17
|
+
* const example = vercel.getEndpointVerification({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getEndpointVerification(args, opts) {
|
|
21
|
+
args = args || {};
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("vercel:index/getEndpointVerification:getEndpointVerification", {
|
|
24
|
+
"teamId": args.teamId,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getEndpointVerification = getEndpointVerification;
|
|
28
|
+
/**
|
|
29
|
+
* Provides a verification code that can be used to prove ownership over an API.
|
|
30
|
+
*
|
|
31
|
+
* ## Example Usage
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as vercel from "@pulumi/vercel";
|
|
36
|
+
*
|
|
37
|
+
* const example = vercel.getEndpointVerification({});
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
function getEndpointVerificationOutput(args, opts) {
|
|
41
|
+
return pulumi.output(args).apply((a) => getEndpointVerification(a, opts));
|
|
42
|
+
}
|
|
43
|
+
exports.getEndpointVerificationOutput = getEndpointVerificationOutput;
|
|
44
|
+
//# sourceMappingURL=getEndpointVerification.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEndpointVerification.js","sourceRoot":"","sources":["../getEndpointVerification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,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,8DAA8D,EAAE;QACzF,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0DAOC;AA6BD;;;;;;;;;;;GAWG;AACH,SAAgB,6BAA6B,CAAC,IAAwC,EAAE,IAA2B;IAC/G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
|
package/getFile.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
9
|
-
* <!--Start PulumiCodeChooser -->
|
|
10
9
|
* ```typescript
|
|
11
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
11
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -23,7 +22,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
23
22
|
* files: exampleFile.then(exampleFile => exampleFile.file),
|
|
24
23
|
* });
|
|
25
24
|
* ```
|
|
26
|
-
* <!--End PulumiCodeChooser -->
|
|
27
25
|
*/
|
|
28
26
|
export declare function getFile(args: GetFileArgs, opts?: pulumi.InvokeOptions): Promise<GetFileResult>;
|
|
29
27
|
/**
|
|
@@ -55,7 +53,6 @@ export interface GetFileResult {
|
|
|
55
53
|
*
|
|
56
54
|
* ## Example Usage
|
|
57
55
|
*
|
|
58
|
-
* <!--Start PulumiCodeChooser -->
|
|
59
56
|
* ```typescript
|
|
60
57
|
* import * as pulumi from "@pulumi/pulumi";
|
|
61
58
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -72,7 +69,6 @@ export interface GetFileResult {
|
|
|
72
69
|
* files: exampleFile.then(exampleFile => exampleFile.file),
|
|
73
70
|
* });
|
|
74
71
|
* ```
|
|
75
|
-
* <!--End PulumiCodeChooser -->
|
|
76
72
|
*/
|
|
77
73
|
export declare function getFileOutput(args: GetFileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFileResult>;
|
|
78
74
|
/**
|
package/getFile.js
CHANGED
|
@@ -12,7 +12,6 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
-
* <!--Start PulumiCodeChooser -->
|
|
16
15
|
* ```typescript
|
|
17
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
18
17
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -29,7 +28,6 @@ const utilities = require("./utilities");
|
|
|
29
28
|
* files: exampleFile.then(exampleFile => exampleFile.file),
|
|
30
29
|
* });
|
|
31
30
|
* ```
|
|
32
|
-
* <!--End PulumiCodeChooser -->
|
|
33
31
|
*/
|
|
34
32
|
function getFile(args, opts) {
|
|
35
33
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -45,7 +43,6 @@ exports.getFile = getFile;
|
|
|
45
43
|
*
|
|
46
44
|
* ## Example Usage
|
|
47
45
|
*
|
|
48
|
-
* <!--Start PulumiCodeChooser -->
|
|
49
46
|
* ```typescript
|
|
50
47
|
* import * as pulumi from "@pulumi/pulumi";
|
|
51
48
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -62,7 +59,6 @@ exports.getFile = getFile;
|
|
|
62
59
|
* files: exampleFile.then(exampleFile => exampleFile.file),
|
|
63
60
|
* });
|
|
64
61
|
* ```
|
|
65
|
-
* <!--End PulumiCodeChooser -->
|
|
66
62
|
*/
|
|
67
63
|
function getFileOutput(args, opts) {
|
|
68
64
|
return pulumi.output(args).apply((a) => getFile(a, opts));
|
package/getFile.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFile.js","sourceRoot":"","sources":["../getFile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getFile.js","sourceRoot":"","sources":["../getFile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0BAMC;AAuBD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|
package/getLogDrain.d.ts
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides information about an existing Log Drain.
|
|
4
|
+
*
|
|
5
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
6
|
+
*
|
|
7
|
+
* Teams on Pro and Enterprise plans can subscribe to log drains that are generic and configurable from the Vercel dashboard without creating an integration. This allows you to use a HTTP service to receive logs through Vercel's log drains.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as vercel from "@pulumi/vercel";
|
|
14
|
+
*
|
|
15
|
+
* const example = vercel.getLogDrain({
|
|
16
|
+
* id: "lg_xxxxxxx_xxxxxx_xxxxx",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare function getLogDrain(args: GetLogDrainArgs, opts?: pulumi.InvokeOptions): Promise<GetLogDrainResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getLogDrain.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetLogDrainArgs {
|
|
25
|
+
/**
|
|
26
|
+
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
27
|
+
*/
|
|
28
|
+
endpoint: string;
|
|
29
|
+
/**
|
|
30
|
+
* The ID of the Log Drain.
|
|
31
|
+
*/
|
|
32
|
+
id: string;
|
|
33
|
+
/**
|
|
34
|
+
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
35
|
+
*/
|
|
36
|
+
teamId?: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* A collection of values returned by getLogDrain.
|
|
40
|
+
*/
|
|
41
|
+
export interface GetLogDrainResult {
|
|
42
|
+
/**
|
|
43
|
+
* The format log data should be delivered in. Can be `json` or `ndjson`.
|
|
44
|
+
*/
|
|
45
|
+
readonly deliveryFormat: string;
|
|
46
|
+
/**
|
|
47
|
+
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
48
|
+
*/
|
|
49
|
+
readonly endpoint: string;
|
|
50
|
+
/**
|
|
51
|
+
* Logs from the selected environments will be forwarded to your webhook. At least one must be present.
|
|
52
|
+
*/
|
|
53
|
+
readonly environments: string[];
|
|
54
|
+
/**
|
|
55
|
+
* Custom headers to include in requests to the log drain endpoint.
|
|
56
|
+
*/
|
|
57
|
+
readonly headers: {
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* The ID of the Log Drain.
|
|
62
|
+
*/
|
|
63
|
+
readonly id: string;
|
|
64
|
+
/**
|
|
65
|
+
* A list of project IDs that the log drain should be associated with. Logs from these projects will be sent log events to the specified endpoint. If omitted, logs will be sent for all projects.
|
|
66
|
+
*/
|
|
67
|
+
readonly projectIds: string[];
|
|
68
|
+
/**
|
|
69
|
+
* A ratio of logs matching the sampling rate will be sent to your log drain. Should be a value between 0 and 1. If unspecified, all logs are sent.
|
|
70
|
+
*/
|
|
71
|
+
readonly samplingRate: number;
|
|
72
|
+
/**
|
|
73
|
+
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and `function`.
|
|
74
|
+
*/
|
|
75
|
+
readonly sources: string[];
|
|
76
|
+
/**
|
|
77
|
+
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
78
|
+
*/
|
|
79
|
+
readonly teamId: string;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Provides information about an existing Log Drain.
|
|
83
|
+
*
|
|
84
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
85
|
+
*
|
|
86
|
+
* Teams on Pro and Enterprise plans can subscribe to log drains that are generic and configurable from the Vercel dashboard without creating an integration. This allows you to use a HTTP service to receive logs through Vercel's log drains.
|
|
87
|
+
*
|
|
88
|
+
* ## Example Usage
|
|
89
|
+
*
|
|
90
|
+
* ```typescript
|
|
91
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
92
|
+
* import * as vercel from "@pulumi/vercel";
|
|
93
|
+
*
|
|
94
|
+
* const example = vercel.getLogDrain({
|
|
95
|
+
* id: "lg_xxxxxxx_xxxxxx_xxxxx",
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
export declare function getLogDrainOutput(args: GetLogDrainOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetLogDrainResult>;
|
|
100
|
+
/**
|
|
101
|
+
* A collection of arguments for invoking getLogDrain.
|
|
102
|
+
*/
|
|
103
|
+
export interface GetLogDrainOutputArgs {
|
|
104
|
+
/**
|
|
105
|
+
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
106
|
+
*/
|
|
107
|
+
endpoint: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The ID of the Log Drain.
|
|
110
|
+
*/
|
|
111
|
+
id: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
114
|
+
*/
|
|
115
|
+
teamId?: pulumi.Input<string>;
|
|
116
|
+
}
|
package/getLogDrain.js
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getLogDrainOutput = exports.getLogDrain = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about an existing Log Drain.
|
|
10
|
+
*
|
|
11
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
12
|
+
*
|
|
13
|
+
* Teams on Pro and Enterprise plans can subscribe to log drains that are generic and configurable from the Vercel dashboard without creating an integration. This allows you to use a HTTP service to receive logs through Vercel's log drains.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as vercel from "@pulumi/vercel";
|
|
20
|
+
*
|
|
21
|
+
* const example = vercel.getLogDrain({
|
|
22
|
+
* id: "lg_xxxxxxx_xxxxxx_xxxxx",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
function getLogDrain(args, opts) {
|
|
27
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
+
return pulumi.runtime.invoke("vercel:index/getLogDrain:getLogDrain", {
|
|
29
|
+
"endpoint": args.endpoint,
|
|
30
|
+
"id": args.id,
|
|
31
|
+
"teamId": args.teamId,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getLogDrain = getLogDrain;
|
|
35
|
+
/**
|
|
36
|
+
* Provides information about an existing Log Drain.
|
|
37
|
+
*
|
|
38
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
39
|
+
*
|
|
40
|
+
* Teams on Pro and Enterprise plans can subscribe to log drains that are generic and configurable from the Vercel dashboard without creating an integration. This allows you to use a HTTP service to receive logs through Vercel's log drains.
|
|
41
|
+
*
|
|
42
|
+
* ## Example Usage
|
|
43
|
+
*
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as vercel from "@pulumi/vercel";
|
|
47
|
+
*
|
|
48
|
+
* const example = vercel.getLogDrain({
|
|
49
|
+
* id: "lg_xxxxxxx_xxxxxx_xxxxx",
|
|
50
|
+
* });
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
function getLogDrainOutput(args, opts) {
|
|
54
|
+
return pulumi.output(args).apply((a) => getLogDrain(a, opts));
|
|
55
|
+
}
|
|
56
|
+
exports.getLogDrainOutput = getLogDrainOutput;
|
|
57
|
+
//# sourceMappingURL=getLogDrain.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLogDrain.js","sourceRoot":"","sources":["../getLogDrain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kCAQC;AA6DD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getProject.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
|
12
|
-
* <!--Start PulumiCodeChooser -->
|
|
13
12
|
* ```typescript
|
|
14
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
14
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -19,7 +18,6 @@ import * as outputs from "./types/output";
|
|
|
19
18
|
* });
|
|
20
19
|
* export const projectId = foo.then(foo => foo.id);
|
|
21
20
|
* ```
|
|
22
|
-
* <!--End PulumiCodeChooser -->
|
|
23
21
|
*/
|
|
24
22
|
export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
|
|
25
23
|
/**
|
|
@@ -39,14 +37,30 @@ export interface GetProjectArgs {
|
|
|
39
37
|
* A collection of values returned by getProject.
|
|
40
38
|
*/
|
|
41
39
|
export interface GetProjectResult {
|
|
40
|
+
/**
|
|
41
|
+
* Automatically assign custom production domains after each Production deployment via merge to the production branch or Vercel CLI deploy with --prod. Defaults to `true`
|
|
42
|
+
*/
|
|
43
|
+
readonly autoAssignCustomDomains: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Vercel provides a set of Environment Variables that are automatically populated by the System, such as the URL of the Deployment or the name of the Git branch deployed. To expose them to your Deployments, enable this field
|
|
46
|
+
*/
|
|
47
|
+
readonly automaticallyExposeSystemEnvironmentVariables: boolean;
|
|
42
48
|
/**
|
|
43
49
|
* The build command for this project. If omitted, this value will be automatically detected.
|
|
44
50
|
*/
|
|
45
51
|
readonly buildCommand: string;
|
|
52
|
+
/**
|
|
53
|
+
* Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
|
|
54
|
+
*/
|
|
55
|
+
readonly customerSuccessCodeVisibility: boolean;
|
|
46
56
|
/**
|
|
47
57
|
* The dev command for this project. If omitted, this value will be automatically detected.
|
|
48
58
|
*/
|
|
49
59
|
readonly devCommand: string;
|
|
60
|
+
/**
|
|
61
|
+
* If no index file is present within a directory, the directory contents will be displayed.
|
|
62
|
+
*/
|
|
63
|
+
readonly directoryListing: boolean;
|
|
50
64
|
/**
|
|
51
65
|
* A list of environment variables that should be configured for the project.
|
|
52
66
|
*/
|
|
@@ -55,6 +69,22 @@ export interface GetProjectResult {
|
|
|
55
69
|
* The framework that is being used for this project. If omitted, no framework is selected.
|
|
56
70
|
*/
|
|
57
71
|
readonly framework: string;
|
|
72
|
+
/**
|
|
73
|
+
* Automatically failover Serverless Functions to the nearest region. You can customize regions through vercel.json. A new Deployment is required for your changes to take effect.
|
|
74
|
+
*/
|
|
75
|
+
readonly functionFailover: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Configuration for Git Comments.
|
|
78
|
+
*/
|
|
79
|
+
readonly gitComments: outputs.GetProjectGitComments;
|
|
80
|
+
/**
|
|
81
|
+
* Ensures that pull requests targeting your Git repository must be authorized by a member of your Team before deploying if your Project has Environment Variables or if the pull request includes a change to vercel.json.
|
|
82
|
+
*/
|
|
83
|
+
readonly gitForkProtection: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Enables Git LFS support. Git LFS replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
|
|
86
|
+
*/
|
|
87
|
+
readonly gitLfs: boolean;
|
|
58
88
|
/**
|
|
59
89
|
* The Git Repository that will be connected to the project. When this is defined, any pushes to the specified connected Git Repository will be automatically deployed. This requires the corresponding Vercel for [Github](https://vercel.com/docs/concepts/git/vercel-for-github), [Gitlab](https://vercel.com/docs/concepts/git/vercel-for-gitlab) or [Bitbucket](https://vercel.com/docs/concepts/git/vercel-for-bitbucket) plugins to be installed.
|
|
60
90
|
*/
|
|
@@ -83,6 +113,18 @@ export interface GetProjectResult {
|
|
|
83
113
|
* Ensures visitors of your Preview Deployments must enter a password in order to gain access.
|
|
84
114
|
*/
|
|
85
115
|
readonly passwordProtection: outputs.GetProjectPasswordProtection;
|
|
116
|
+
/**
|
|
117
|
+
* Whether comments are enabled on your Preview Deployments.
|
|
118
|
+
*/
|
|
119
|
+
readonly previewComments: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* If enabled, builds for the Production environment will be prioritized over Preview environments.
|
|
122
|
+
*/
|
|
123
|
+
readonly prioritiseProductionBuilds: boolean;
|
|
124
|
+
/**
|
|
125
|
+
* Allows automation services to bypass Vercel Authentication and Password Protection for both Preview and Production Deployments on this project when using an HTTP header named `x-vercel-protection-bypass`.
|
|
126
|
+
*/
|
|
127
|
+
readonly protectionBypassForAutomation: boolean;
|
|
86
128
|
/**
|
|
87
129
|
* Specifies whether the source code and logs of the deployments for this project should be public or not.
|
|
88
130
|
*/
|
|
@@ -95,6 +137,10 @@ export interface GetProjectResult {
|
|
|
95
137
|
* The region on Vercel's network to which your Serverless Functions are deployed. It should be close to any data source your Serverless Function might depend on. A new Deployment is required for your changes to take effect. Please see [Vercel's documentation](https://vercel.com/docs/concepts/edge-network/regions) for a full list of regions.
|
|
96
138
|
*/
|
|
97
139
|
readonly serverlessFunctionRegion: string;
|
|
140
|
+
/**
|
|
141
|
+
* Ensures that outdated clients always fetch the correct version for a given deployment. This value defines how long Vercel keeps Skew Protection active.
|
|
142
|
+
*/
|
|
143
|
+
readonly skewProtection: string;
|
|
98
144
|
/**
|
|
99
145
|
* The team ID the project exists beneath. Required when configuring a team resource if a default team has not been set in the provider.
|
|
100
146
|
*/
|
|
@@ -117,7 +163,6 @@ export interface GetProjectResult {
|
|
|
117
163
|
*
|
|
118
164
|
* ## Example Usage
|
|
119
165
|
*
|
|
120
|
-
* <!--Start PulumiCodeChooser -->
|
|
121
166
|
* ```typescript
|
|
122
167
|
* import * as pulumi from "@pulumi/pulumi";
|
|
123
168
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -127,7 +172,6 @@ export interface GetProjectResult {
|
|
|
127
172
|
* });
|
|
128
173
|
* export const projectId = foo.then(foo => foo.id);
|
|
129
174
|
* ```
|
|
130
|
-
* <!--End PulumiCodeChooser -->
|
|
131
175
|
*/
|
|
132
176
|
export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetProjectResult>;
|
|
133
177
|
/**
|
package/getProject.js
CHANGED
|
@@ -14,7 +14,6 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
-
* <!--Start PulumiCodeChooser -->
|
|
18
17
|
* ```typescript
|
|
19
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
20
19
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -24,7 +23,6 @@ const utilities = require("./utilities");
|
|
|
24
23
|
* });
|
|
25
24
|
* export const projectId = foo.then(foo => foo.id);
|
|
26
25
|
* ```
|
|
27
|
-
* <!--End PulumiCodeChooser -->
|
|
28
26
|
*/
|
|
29
27
|
function getProject(args, opts) {
|
|
30
28
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -43,7 +41,6 @@ exports.getProject = getProject;
|
|
|
43
41
|
*
|
|
44
42
|
* ## Example Usage
|
|
45
43
|
*
|
|
46
|
-
* <!--Start PulumiCodeChooser -->
|
|
47
44
|
* ```typescript
|
|
48
45
|
* import * as pulumi from "@pulumi/pulumi";
|
|
49
46
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -53,7 +50,6 @@ exports.getProject = getProject;
|
|
|
53
50
|
* });
|
|
54
51
|
* export const projectId = foo.then(foo => foo.id);
|
|
55
52
|
* ```
|
|
56
|
-
* <!--End PulumiCodeChooser -->
|
|
57
53
|
*/
|
|
58
54
|
function getProjectOutput(args, opts) {
|
|
59
55
|
return pulumi.output(args).apply((a) => getProject(a, opts));
|
package/getProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AAyID;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
|
@@ -8,7 +8,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
-
* <!--Start PulumiCodeChooser -->
|
|
12
11
|
* ```typescript
|
|
13
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
14
13
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -24,7 +23,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
24
23
|
* ],
|
|
25
24
|
* });
|
|
26
25
|
* ```
|
|
27
|
-
* <!--End PulumiCodeChooser -->
|
|
28
26
|
*/
|
|
29
27
|
export declare function getSharedEnvironmentVariable(args?: GetSharedEnvironmentVariableArgs, opts?: pulumi.InvokeOptions): Promise<GetSharedEnvironmentVariableResult>;
|
|
30
28
|
/**
|
|
@@ -90,7 +88,6 @@ export interface GetSharedEnvironmentVariableResult {
|
|
|
90
88
|
*
|
|
91
89
|
* ## Example Usage
|
|
92
90
|
*
|
|
93
|
-
* <!--Start PulumiCodeChooser -->
|
|
94
91
|
* ```typescript
|
|
95
92
|
* import * as pulumi from "@pulumi/pulumi";
|
|
96
93
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -106,7 +103,6 @@ export interface GetSharedEnvironmentVariableResult {
|
|
|
106
103
|
* ],
|
|
107
104
|
* });
|
|
108
105
|
* ```
|
|
109
|
-
* <!--End PulumiCodeChooser -->
|
|
110
106
|
*/
|
|
111
107
|
export declare function getSharedEnvironmentVariableOutput(args?: GetSharedEnvironmentVariableOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSharedEnvironmentVariableResult>;
|
|
112
108
|
/**
|
|
@@ -14,7 +14,6 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
-
* <!--Start PulumiCodeChooser -->
|
|
18
17
|
* ```typescript
|
|
19
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
20
19
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -30,7 +29,6 @@ const utilities = require("./utilities");
|
|
|
30
29
|
* ],
|
|
31
30
|
* });
|
|
32
31
|
* ```
|
|
33
|
-
* <!--End PulumiCodeChooser -->
|
|
34
32
|
*/
|
|
35
33
|
function getSharedEnvironmentVariable(args, opts) {
|
|
36
34
|
args = args || {};
|
|
@@ -52,7 +50,6 @@ exports.getSharedEnvironmentVariable = getSharedEnvironmentVariable;
|
|
|
52
50
|
*
|
|
53
51
|
* ## Example Usage
|
|
54
52
|
*
|
|
55
|
-
* <!--Start PulumiCodeChooser -->
|
|
56
53
|
* ```typescript
|
|
57
54
|
* import * as pulumi from "@pulumi/pulumi";
|
|
58
55
|
* import * as vercel from "@pulumi/vercel";
|
|
@@ -68,7 +65,6 @@ exports.getSharedEnvironmentVariable = getSharedEnvironmentVariable;
|
|
|
68
65
|
* ],
|
|
69
66
|
* });
|
|
70
67
|
* ```
|
|
71
|
-
* <!--End PulumiCodeChooser -->
|
|
72
68
|
*/
|
|
73
69
|
function getSharedEnvironmentVariableOutput(args, opts) {
|
|
74
70
|
return pulumi.output(args).apply((a) => getSharedEnvironmentVariable(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSharedEnvironmentVariable.js","sourceRoot":"","sources":["../getSharedEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSharedEnvironmentVariable.js","sourceRoot":"","sources":["../getSharedEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,4BAA4B,CAAC,IAAuC,EAAE,IAA2B;IAC7G,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,wEAAwE,EAAE;QACnG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,oEAUC;AAyDD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,kCAAkC,CAAC,IAA6C,EAAE,IAA2B;IACzH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,4BAA4B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvF,CAAC;AAFD,gFAEC"}
|