@pulumiverse/vercel 1.15.0 → 2.9.0-alpha.1747136220
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/accessGroup.d.ts +35 -6
- package/accessGroup.js +32 -0
- package/accessGroup.js.map +1 -1
- package/accessGroupProject.d.ts +41 -6
- package/accessGroupProject.js +38 -0
- package/accessGroupProject.js.map +1 -1
- package/alias.d.ts +8 -6
- package/alias.js +5 -0
- package/alias.js.map +1 -1
- package/attackChallengeMode.d.ts +33 -6
- package/attackChallengeMode.js +30 -0
- package/attackChallengeMode.js.map +1 -1
- package/customEnvironment.d.ts +55 -6
- package/customEnvironment.js +52 -0
- package/customEnvironment.js.map +1 -1
- package/deployment.d.ts +17 -34
- package/deployment.js.map +1 -1
- package/dnsRecord.d.ts +127 -30
- package/dnsRecord.js +97 -0
- package/dnsRecord.js.map +1 -1
- package/edgeConfig.d.ts +54 -6
- package/edgeConfig.js +51 -0
- package/edgeConfig.js.map +1 -1
- package/edgeConfigItem.d.ts +50 -6
- package/edgeConfigItem.js +47 -0
- package/edgeConfigItem.js.map +1 -1
- package/edgeConfigSchema.d.ts +28 -6
- package/edgeConfigSchema.js +25 -0
- package/edgeConfigSchema.js.map +1 -1
- package/edgeConfigToken.d.ts +62 -10
- package/edgeConfigToken.js +57 -0
- package/edgeConfigToken.js.map +1 -1
- package/firewallConfig.d.ts +9 -0
- package/firewallConfig.js +9 -0
- package/firewallConfig.js.map +1 -1
- package/getAccessGroup.d.ts +53 -0
- package/getAccessGroup.js +32 -0
- package/getAccessGroup.js.map +1 -1
- package/getAccessGroupProject.d.ts +70 -0
- package/getAccessGroupProject.js +40 -0
- package/getAccessGroupProject.js.map +1 -1
- package/getAlias.d.ts +34 -0
- package/getAlias.js +10 -0
- package/getAlias.js.map +1 -1
- package/getAttackChallengeMode.d.ts +56 -0
- package/getAttackChallengeMode.js +32 -0
- package/getAttackChallengeMode.js.map +1 -1
- package/getCustomEnvironment.d.ts +76 -0
- package/getCustomEnvironment.js +40 -0
- package/getCustomEnvironment.js.map +1 -1
- package/getDeployment.d.ts +65 -0
- package/getDeployment.js +32 -0
- package/getDeployment.js.map +1 -1
- package/getEdgeConfig.d.ts +53 -0
- package/getEdgeConfig.js +32 -0
- package/getEdgeConfig.js.map +1 -1
- package/getEdgeConfigItem.d.ts +74 -0
- package/getEdgeConfigItem.js +44 -0
- package/getEdgeConfigItem.js.map +1 -1
- package/getEdgeConfigSchema.d.ts +49 -0
- package/getEdgeConfigSchema.js +28 -0
- package/getEdgeConfigSchema.js.map +1 -1
- package/getEdgeConfigToken.d.ts +74 -0
- package/getEdgeConfigToken.js +38 -0
- package/getEdgeConfigToken.js.map +1 -1
- package/getEndpointVerification.d.ts +39 -0
- package/getEndpointVerification.js +24 -0
- package/getEndpointVerification.js.map +1 -1
- package/getFile.d.ts +54 -0
- package/getFile.js +48 -0
- package/getFile.js.map +1 -1
- package/getLogDrain.d.ts +81 -0
- package/getLogDrain.js +36 -0
- package/getLogDrain.js.map +1 -1
- package/getPrebuiltProject.d.ts +6 -0
- package/getPrebuiltProject.js.map +1 -1
- package/getProject.d.ts +147 -0
- package/getProject.js +36 -0
- package/getProject.js.map +1 -1
- package/getProjectDeploymentRetention.d.ts +47 -0
- package/getProjectDeploymentRetention.js +14 -0
- package/getProjectDeploymentRetention.js.map +1 -1
- package/getProjectDirectory.d.ts +6 -0
- package/getProjectDirectory.js.map +1 -1
- package/getProjectMembers.d.ts +55 -0
- package/getProjectMembers.js +34 -0
- package/getProjectMembers.js.map +1 -1
- package/getSharedEnvironmentVariable.d.ts +98 -0
- package/getSharedEnvironmentVariable.js +50 -0
- package/getSharedEnvironmentVariable.js.map +1 -1
- package/getTeamConfig.d.ts +76 -0
- package/getTeamConfig.js +28 -0
- package/getTeamConfig.js.map +1 -1
- package/getTeamMember.d.ts +60 -0
- package/getTeamMember.js +30 -0
- package/getTeamMember.js.map +1 -1
- package/logDrain.d.ts +74 -42
- package/logDrain.js +56 -0
- package/logDrain.js.map +1 -1
- package/package.json +3 -2
- package/project.d.ts +90 -108
- package/project.js +45 -0
- package/project.js.map +1 -1
- package/projectDeploymentRetention.d.ts +51 -0
- package/projectDeploymentRetention.js +51 -0
- package/projectDeploymentRetention.js.map +1 -1
- package/projectDomain.d.ts +58 -12
- package/projectDomain.js +52 -0
- package/projectDomain.js.map +1 -1
- package/projectEnvironmentVariable.d.ts +91 -18
- package/projectEnvironmentVariable.js +82 -0
- package/projectEnvironmentVariable.js.map +1 -1
- package/projectEnvironmentVariables.d.ts +3 -0
- package/projectEnvironmentVariables.js +3 -0
- package/projectEnvironmentVariables.js.map +1 -1
- package/projectMembers.d.ts +26 -6
- package/projectMembers.js +23 -0
- package/projectMembers.js.map +1 -1
- package/sharedEnvironmentVariable.d.ts +50 -12
- package/sharedEnvironmentVariable.js +44 -0
- package/sharedEnvironmentVariable.js.map +1 -1
- package/teamConfig.d.ts +6 -6
- package/teamConfig.js +3 -0
- package/teamConfig.js.map +1 -1
- package/teamMember.d.ts +33 -18
- package/teamMember.js +24 -0
- package/teamMember.js.map +1 -1
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +3 -3
- package/webhook.d.ts +43 -18
- package/webhook.js +35 -0
- package/webhook.js.map +1 -1
- package/package.json.bak +0 -27
package/getTeamConfig.js
CHANGED
|
@@ -5,6 +5,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getTeamConfigOutput = exports.getTeamConfig = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
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.getTeamConfig({
|
|
18
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
8
22
|
function getTeamConfig(args, opts) {
|
|
9
23
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
10
24
|
return pulumi.runtime.invoke("vercel:index/getTeamConfig:getTeamConfig", {
|
|
@@ -12,6 +26,20 @@ function getTeamConfig(args, opts) {
|
|
|
12
26
|
}, opts);
|
|
13
27
|
}
|
|
14
28
|
exports.getTeamConfig = getTeamConfig;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as vercel from "@pulumi/vercel";
|
|
37
|
+
*
|
|
38
|
+
* const example = vercel.getTeamConfig({
|
|
39
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
15
43
|
function getTeamConfigOutput(args, opts) {
|
|
16
44
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
17
45
|
return pulumi.runtime.invokeOutput("vercel:index/getTeamConfig:getTeamConfig", {
|
package/getTeamConfig.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTeamConfig.js","sourceRoot":"","sources":["../getTeamConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;
|
|
1
|
+
{"version":3,"file":"getTeamConfig.js","sourceRoot":"","sources":["../getTeamConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AAyED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
package/getTeamMember.d.ts
CHANGED
|
@@ -1,29 +1,89 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Provider a datasource for managing a team member.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as vercel from "@pulumi/vercel";
|
|
11
|
+
*
|
|
12
|
+
* const example = vercel.getTeamMember({
|
|
13
|
+
* teamId: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
14
|
+
* userId: "uuuuuuuuuuuuuuuuuuuuuuuuuu",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
3
18
|
export declare function getTeamMember(args: GetTeamMemberArgs, opts?: pulumi.InvokeOptions): Promise<GetTeamMemberResult>;
|
|
4
19
|
/**
|
|
5
20
|
* A collection of arguments for invoking getTeamMember.
|
|
6
21
|
*/
|
|
7
22
|
export interface GetTeamMemberArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the existing Vercel Team.
|
|
25
|
+
*/
|
|
8
26
|
teamId: string;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the existing Vercel Team Member.
|
|
29
|
+
*/
|
|
9
30
|
userId: string;
|
|
10
31
|
}
|
|
11
32
|
/**
|
|
12
33
|
* A collection of values returned by getTeamMember.
|
|
13
34
|
*/
|
|
14
35
|
export interface GetTeamMemberResult {
|
|
36
|
+
/**
|
|
37
|
+
* If access groups are enabled on the team, and the user is a CONTRIBUTOR, `projects`, `accessGroups` or both must be specified. A set of access groups IDs that the user should be granted access to.
|
|
38
|
+
*/
|
|
15
39
|
readonly accessGroups: string[];
|
|
40
|
+
/**
|
|
41
|
+
* The ID of this resource.
|
|
42
|
+
*/
|
|
16
43
|
readonly id: string;
|
|
44
|
+
/**
|
|
45
|
+
* If access groups are enabled on the team, and the user is a CONTRIBUTOR, `projects`, `accessGroups` or both must be specified. A set of projects that the user should be granted access to, along with their role in each project.
|
|
46
|
+
*/
|
|
17
47
|
readonly projects: outputs.GetTeamMemberProject[];
|
|
48
|
+
/**
|
|
49
|
+
* The role that the user should have in the project. One of 'MEMBER', 'OWNER', 'VIEWER', 'DEVELOPER', 'BILLING' or 'CONTRIBUTOR'. Depending on your Team's plan, some of these roles may be unavailable.
|
|
50
|
+
*/
|
|
18
51
|
readonly role: string;
|
|
52
|
+
/**
|
|
53
|
+
* The ID of the existing Vercel Team.
|
|
54
|
+
*/
|
|
19
55
|
readonly teamId: string;
|
|
56
|
+
/**
|
|
57
|
+
* The ID of the existing Vercel Team Member.
|
|
58
|
+
*/
|
|
20
59
|
readonly userId: string;
|
|
21
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* Provider a datasource for managing a team member.
|
|
63
|
+
*
|
|
64
|
+
* ## Example Usage
|
|
65
|
+
*
|
|
66
|
+
* ```typescript
|
|
67
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
68
|
+
* import * as vercel from "@pulumi/vercel";
|
|
69
|
+
*
|
|
70
|
+
* const example = vercel.getTeamMember({
|
|
71
|
+
* teamId: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
72
|
+
* userId: "uuuuuuuuuuuuuuuuuuuuuuuuuu",
|
|
73
|
+
* });
|
|
74
|
+
* ```
|
|
75
|
+
*/
|
|
22
76
|
export declare function getTeamMemberOutput(args: GetTeamMemberOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTeamMemberResult>;
|
|
23
77
|
/**
|
|
24
78
|
* A collection of arguments for invoking getTeamMember.
|
|
25
79
|
*/
|
|
26
80
|
export interface GetTeamMemberOutputArgs {
|
|
81
|
+
/**
|
|
82
|
+
* The ID of the existing Vercel Team.
|
|
83
|
+
*/
|
|
27
84
|
teamId: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The ID of the existing Vercel Team Member.
|
|
87
|
+
*/
|
|
28
88
|
userId: pulumi.Input<string>;
|
|
29
89
|
}
|
package/getTeamMember.js
CHANGED
|
@@ -5,6 +5,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getTeamMemberOutput = exports.getTeamMember = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provider a datasource for managing a team member.
|
|
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.getTeamMember({
|
|
18
|
+
* teamId: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
19
|
+
* userId: "uuuuuuuuuuuuuuuuuuuuuuuuuu",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
8
23
|
function getTeamMember(args, opts) {
|
|
9
24
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
10
25
|
return pulumi.runtime.invoke("vercel:index/getTeamMember:getTeamMember", {
|
|
@@ -13,6 +28,21 @@ function getTeamMember(args, opts) {
|
|
|
13
28
|
}, opts);
|
|
14
29
|
}
|
|
15
30
|
exports.getTeamMember = getTeamMember;
|
|
31
|
+
/**
|
|
32
|
+
* Provider a datasource for managing a team member.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as vercel from "@pulumi/vercel";
|
|
39
|
+
*
|
|
40
|
+
* const example = vercel.getTeamMember({
|
|
41
|
+
* teamId: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
42
|
+
* userId: "uuuuuuuuuuuuuuuuuuuuuuuuuu",
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
16
46
|
function getTeamMemberOutput(args, opts) {
|
|
17
47
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
18
48
|
return pulumi.runtime.invokeOutput("vercel:index/getTeamMember:getTeamMember", {
|
package/getTeamMember.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTeamMember.js","sourceRoot":"","sources":["../getTeamMember.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;
|
|
1
|
+
{"version":3,"file":"getTeamMember.js","sourceRoot":"","sources":["../getTeamMember.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AA6CD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
|
package/logDrain.d.ts
CHANGED
|
@@ -1,4 +1,60 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a Configurable Log Drain resource.
|
|
4
|
+
*
|
|
5
|
+
* > For Log Drain integrations, please see the [Integration Log Drain docs](https://vercel.com/docs/observability/log-drains#log-drains-integration).
|
|
6
|
+
*
|
|
7
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
8
|
+
*
|
|
9
|
+
* 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.
|
|
10
|
+
*
|
|
11
|
+
* > Only Pro and Enterprise teams can create Configurable Log Drains.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as vercel from "@pulumi/vercel";
|
|
18
|
+
* import * as vercel from "@pulumiverse/vercel";
|
|
19
|
+
*
|
|
20
|
+
* const exampleEndpointVerification = vercel.getEndpointVerification({});
|
|
21
|
+
* const exampleProject = new vercel.Project("exampleProject", {});
|
|
22
|
+
* const exampleLogDrain = new vercel.LogDrain("exampleLogDrain", {
|
|
23
|
+
* deliveryFormat: "json",
|
|
24
|
+
* environments: ["production"],
|
|
25
|
+
* headers: {
|
|
26
|
+
* "some-key": "some-value",
|
|
27
|
+
* },
|
|
28
|
+
* projectIds: [exampleProject.id],
|
|
29
|
+
* samplingRate: 0.8,
|
|
30
|
+
* secret: "a_very_long_and_very_well_specified_secret",
|
|
31
|
+
* sources: ["static"],
|
|
32
|
+
* endpoint: "https://example.com/my-log-drain-endpoint",
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* ## Import
|
|
37
|
+
*
|
|
38
|
+
* If importing into a personal account, or with a team configured on
|
|
39
|
+
*
|
|
40
|
+
* the provider, simply use the log_drain_id.
|
|
41
|
+
*
|
|
42
|
+
* - log_drain_id can be found by querying the Vercel REST API (https://vercel.com/docs/rest-api/endpoints/logDrains#retrieves-a-list-of-all-the-log-drains).
|
|
43
|
+
*
|
|
44
|
+
* ```sh
|
|
45
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* Alternatively, you can import via the team_id and edge_config_id.
|
|
49
|
+
*
|
|
50
|
+
* - team_id can be found in the team `settings` tab in the Vercel UI.
|
|
51
|
+
*
|
|
52
|
+
* - log_drain_id can be found by querying the Vercel REST API (https://vercel.com/docs/rest-api/endpoints/logDrains#retrieves-a-list-of-all-the-log-drains).
|
|
53
|
+
*
|
|
54
|
+
* ```sh
|
|
55
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
2
58
|
export declare class LogDrain extends pulumi.CustomResource {
|
|
3
59
|
/**
|
|
4
60
|
* Get an existing LogDrain resource's state with the given name, ID, and optional extra
|
|
@@ -20,9 +76,7 @@ export declare class LogDrain extends pulumi.CustomResource {
|
|
|
20
76
|
*/
|
|
21
77
|
readonly deliveryFormat: pulumi.Output<string>;
|
|
22
78
|
/**
|
|
23
|
-
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and
|
|
24
|
-
* an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header
|
|
25
|
-
* should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
79
|
+
* 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.
|
|
26
80
|
*/
|
|
27
81
|
readonly endpoint: pulumi.Output<string>;
|
|
28
82
|
/**
|
|
@@ -36,29 +90,23 @@ export declare class LogDrain extends pulumi.CustomResource {
|
|
|
36
90
|
[key: string]: string;
|
|
37
91
|
} | undefined>;
|
|
38
92
|
/**
|
|
39
|
-
* A list of project IDs that the log drain should be associated with. Logs from these projects will be sent log events to
|
|
40
|
-
* the specified endpoint. If omitted, logs will be sent for all projects.
|
|
93
|
+
* 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.
|
|
41
94
|
*/
|
|
42
95
|
readonly projectIds: pulumi.Output<string[] | undefined>;
|
|
43
96
|
/**
|
|
44
|
-
* A ratio of logs matching the sampling rate will be sent to your log drain. Should be a value between 0 and 1. If
|
|
45
|
-
* unspecified, all logs are sent.
|
|
97
|
+
* 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.
|
|
46
98
|
*/
|
|
47
99
|
readonly samplingRate: pulumi.Output<number | undefined>;
|
|
48
100
|
/**
|
|
49
|
-
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from
|
|
50
|
-
* Vercel and are not tampered with. See
|
|
51
|
-
* https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
101
|
+
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from Vercel and are not tampered with. See https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
52
102
|
*/
|
|
53
103
|
readonly secret: pulumi.Output<string>;
|
|
54
104
|
/**
|
|
55
|
-
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and
|
|
56
|
-
* `lambda`.
|
|
105
|
+
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and `lambda`.
|
|
57
106
|
*/
|
|
58
107
|
readonly sources: pulumi.Output<string[]>;
|
|
59
108
|
/**
|
|
60
|
-
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not
|
|
61
|
-
* been set in the provider.
|
|
109
|
+
* 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.
|
|
62
110
|
*/
|
|
63
111
|
readonly teamId: pulumi.Output<string>;
|
|
64
112
|
/**
|
|
@@ -79,9 +127,7 @@ export interface LogDrainState {
|
|
|
79
127
|
*/
|
|
80
128
|
deliveryFormat?: pulumi.Input<string>;
|
|
81
129
|
/**
|
|
82
|
-
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and
|
|
83
|
-
* an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header
|
|
84
|
-
* should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
130
|
+
* 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.
|
|
85
131
|
*/
|
|
86
132
|
endpoint?: pulumi.Input<string>;
|
|
87
133
|
/**
|
|
@@ -95,29 +141,23 @@ export interface LogDrainState {
|
|
|
95
141
|
[key: string]: pulumi.Input<string>;
|
|
96
142
|
}>;
|
|
97
143
|
/**
|
|
98
|
-
* A list of project IDs that the log drain should be associated with. Logs from these projects will be sent log events to
|
|
99
|
-
* the specified endpoint. If omitted, logs will be sent for all projects.
|
|
144
|
+
* 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.
|
|
100
145
|
*/
|
|
101
146
|
projectIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
102
147
|
/**
|
|
103
|
-
* A ratio of logs matching the sampling rate will be sent to your log drain. Should be a value between 0 and 1. If
|
|
104
|
-
* unspecified, all logs are sent.
|
|
148
|
+
* 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.
|
|
105
149
|
*/
|
|
106
150
|
samplingRate?: pulumi.Input<number>;
|
|
107
151
|
/**
|
|
108
|
-
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from
|
|
109
|
-
* Vercel and are not tampered with. See
|
|
110
|
-
* https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
152
|
+
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from Vercel and are not tampered with. See https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
111
153
|
*/
|
|
112
154
|
secret?: pulumi.Input<string>;
|
|
113
155
|
/**
|
|
114
|
-
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and
|
|
115
|
-
* `lambda`.
|
|
156
|
+
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and `lambda`.
|
|
116
157
|
*/
|
|
117
158
|
sources?: pulumi.Input<pulumi.Input<string>[]>;
|
|
118
159
|
/**
|
|
119
|
-
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not
|
|
120
|
-
* been set in the provider.
|
|
160
|
+
* 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.
|
|
121
161
|
*/
|
|
122
162
|
teamId?: pulumi.Input<string>;
|
|
123
163
|
}
|
|
@@ -130,9 +170,7 @@ export interface LogDrainArgs {
|
|
|
130
170
|
*/
|
|
131
171
|
deliveryFormat: pulumi.Input<string>;
|
|
132
172
|
/**
|
|
133
|
-
* Logs will be sent as POST requests to this URL. The endpoint will be verified, and must return a `200` status code and
|
|
134
|
-
* an `x-vercel-verify` header taken from the endpointVerification data source. The value the `x-vercel-verify` header
|
|
135
|
-
* should be can be read from the `vercelEndpointVerificationCode` data source.
|
|
173
|
+
* 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.
|
|
136
174
|
*/
|
|
137
175
|
endpoint: pulumi.Input<string>;
|
|
138
176
|
/**
|
|
@@ -146,29 +184,23 @@ export interface LogDrainArgs {
|
|
|
146
184
|
[key: string]: pulumi.Input<string>;
|
|
147
185
|
}>;
|
|
148
186
|
/**
|
|
149
|
-
* A list of project IDs that the log drain should be associated with. Logs from these projects will be sent log events to
|
|
150
|
-
* the specified endpoint. If omitted, logs will be sent for all projects.
|
|
187
|
+
* 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.
|
|
151
188
|
*/
|
|
152
189
|
projectIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
153
190
|
/**
|
|
154
|
-
* A ratio of logs matching the sampling rate will be sent to your log drain. Should be a value between 0 and 1. If
|
|
155
|
-
* unspecified, all logs are sent.
|
|
191
|
+
* 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.
|
|
156
192
|
*/
|
|
157
193
|
samplingRate?: pulumi.Input<number>;
|
|
158
194
|
/**
|
|
159
|
-
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from
|
|
160
|
-
* Vercel and are not tampered with. See
|
|
161
|
-
* https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
195
|
+
* A custom secret to be used for signing log events. You can use this secret to verify that log events are coming from Vercel and are not tampered with. See https://vercel.com/docs/observability/log-drains/log-drains-reference#secure-log-drains for full info.
|
|
162
196
|
*/
|
|
163
197
|
secret?: pulumi.Input<string>;
|
|
164
198
|
/**
|
|
165
|
-
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and
|
|
166
|
-
* `lambda`.
|
|
199
|
+
* A set of sources that the log drain should send logs for. Valid values are `static`, `edge`, `external`, `build` and `lambda`.
|
|
167
200
|
*/
|
|
168
201
|
sources: pulumi.Input<pulumi.Input<string>[]>;
|
|
169
202
|
/**
|
|
170
|
-
* The ID of the team the Log Drain should exist under. Required when configuring a team resource if a default team has not
|
|
171
|
-
* been set in the provider.
|
|
203
|
+
* 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.
|
|
172
204
|
*/
|
|
173
205
|
teamId?: pulumi.Input<string>;
|
|
174
206
|
}
|
package/logDrain.js
CHANGED
|
@@ -5,6 +5,62 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.LogDrain = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Configurable Log Drain resource.
|
|
10
|
+
*
|
|
11
|
+
* > For Log Drain integrations, please see the [Integration Log Drain docs](https://vercel.com/docs/observability/log-drains#log-drains-integration).
|
|
12
|
+
*
|
|
13
|
+
* Log Drains collect all of your logs using a service specializing in storing app logs.
|
|
14
|
+
*
|
|
15
|
+
* 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.
|
|
16
|
+
*
|
|
17
|
+
* > Only Pro and Enterprise teams can create Configurable Log Drains.
|
|
18
|
+
*
|
|
19
|
+
* ## Example Usage
|
|
20
|
+
*
|
|
21
|
+
* ```typescript
|
|
22
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
23
|
+
* import * as vercel from "@pulumi/vercel";
|
|
24
|
+
* import * as vercel from "@pulumiverse/vercel";
|
|
25
|
+
*
|
|
26
|
+
* const exampleEndpointVerification = vercel.getEndpointVerification({});
|
|
27
|
+
* const exampleProject = new vercel.Project("exampleProject", {});
|
|
28
|
+
* const exampleLogDrain = new vercel.LogDrain("exampleLogDrain", {
|
|
29
|
+
* deliveryFormat: "json",
|
|
30
|
+
* environments: ["production"],
|
|
31
|
+
* headers: {
|
|
32
|
+
* "some-key": "some-value",
|
|
33
|
+
* },
|
|
34
|
+
* projectIds: [exampleProject.id],
|
|
35
|
+
* samplingRate: 0.8,
|
|
36
|
+
* secret: "a_very_long_and_very_well_specified_secret",
|
|
37
|
+
* sources: ["static"],
|
|
38
|
+
* endpoint: "https://example.com/my-log-drain-endpoint",
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* ## Import
|
|
43
|
+
*
|
|
44
|
+
* If importing into a personal account, or with a team configured on
|
|
45
|
+
*
|
|
46
|
+
* the provider, simply use the log_drain_id.
|
|
47
|
+
*
|
|
48
|
+
* - log_drain_id can be found by querying the Vercel REST API (https://vercel.com/docs/rest-api/endpoints/logDrains#retrieves-a-list-of-all-the-log-drains).
|
|
49
|
+
*
|
|
50
|
+
* ```sh
|
|
51
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* Alternatively, you can import via the team_id and edge_config_id.
|
|
55
|
+
*
|
|
56
|
+
* - team_id can be found in the team `settings` tab in the Vercel UI.
|
|
57
|
+
*
|
|
58
|
+
* - log_drain_id can be found by querying the Vercel REST API (https://vercel.com/docs/rest-api/endpoints/logDrains#retrieves-a-list-of-all-the-log-drains).
|
|
59
|
+
*
|
|
60
|
+
* ```sh
|
|
61
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
8
64
|
class LogDrain extends pulumi.CustomResource {
|
|
9
65
|
/**
|
|
10
66
|
* Get an existing LogDrain resource's state with the given name, ID, and optional extra
|
package/logDrain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logDrain.js","sourceRoot":"","sources":["../logDrain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"logDrain.js","sourceRoot":"","sources":["../logDrain.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/vercel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.9.0-alpha.1747136220",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"vercel",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build": "tsc"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@pulumi/pulumi": "^3.
|
|
15
|
+
"@pulumi/pulumi": "^3.136.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/mime": "^2.0.0",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "vercel",
|
|
25
|
+
"version": "2.9.0-alpha.1747136220",
|
|
25
26
|
"server": "github://api.github.com/pulumiverse"
|
|
26
27
|
}
|
|
27
28
|
}
|