@pulumiverse/vercel 1.14.3 → 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 +92 -0
- package/accessGroup.js +83 -0
- package/accessGroup.js.map +1 -0
- package/accessGroupProject.d.ts +122 -0
- package/accessGroupProject.js +102 -0
- package/accessGroupProject.js.map +1 -0
- package/customEnvironment.d.ts +150 -0
- package/customEnvironment.js +112 -0
- package/customEnvironment.js.map +1 -0
- package/edgeConfigItem.d.ts +131 -0
- package/edgeConfigItem.js +111 -0
- package/edgeConfigItem.js.map +1 -0
- package/getAccessGroup.d.ts +78 -0
- package/getAccessGroup.js +56 -0
- package/getAccessGroup.js.map +1 -0
- package/getAccessGroupProject.d.ts +102 -0
- package/getAccessGroupProject.js +66 -0
- package/getAccessGroupProject.js.map +1 -0
- package/getCustomEnvironment.d.ts +107 -0
- package/getCustomEnvironment.js +66 -0
- package/getCustomEnvironment.js.map +1 -0
- package/getEdgeConfigItem.d.ts +102 -0
- package/getEdgeConfigItem.js +70 -0
- package/getEdgeConfigItem.js.map +1 -0
- package/getProject.d.ts +7 -5
- package/getProject.js +2 -4
- package/getProject.js.map +1 -1
- package/getProjectMembers.d.ts +85 -0
- package/getProjectMembers.js +58 -0
- package/getProjectMembers.js.map +1 -0
- package/getSharedEnvironmentVariable.d.ts +4 -0
- package/getSharedEnvironmentVariable.js.map +1 -1
- package/getTeamConfig.d.ts +111 -0
- package/getTeamConfig.js +50 -0
- package/getTeamConfig.js.map +1 -0
- package/getTeamMember.d.ts +89 -0
- package/getTeamMember.js +54 -0
- package/getTeamMember.js.map +1 -0
- package/index.d.ts +45 -6
- package/index.js +63 -9
- package/index.js.map +1 -1
- package/logDrain.d.ts +2 -2
- package/logDrain.js +2 -2
- package/package.json +3 -2
- package/project.d.ts +9 -5
- package/project.js +3 -1
- package/project.js.map +1 -1
- package/projectDomain.d.ts +12 -0
- package/projectDomain.js +2 -0
- package/projectDomain.js.map +1 -1
- package/projectEnvironmentVariable.d.ts +31 -4
- package/projectEnvironmentVariable.js +7 -3
- package/projectEnvironmentVariable.js.map +1 -1
- package/projectEnvironmentVariables.d.ts +77 -0
- package/projectEnvironmentVariables.js +62 -0
- package/projectEnvironmentVariables.js.map +1 -0
- package/projectMembers.d.ts +97 -0
- package/{projectFunctionCpu.js → projectMembers.js} +25 -36
- package/projectMembers.js.map +1 -0
- package/sharedEnvironmentVariable.d.ts +13 -0
- package/sharedEnvironmentVariable.js +3 -0
- package/sharedEnvironmentVariable.js.map +1 -1
- package/teamConfig.d.ts +211 -0
- package/teamConfig.js +78 -0
- package/teamConfig.js.map +1 -0
- package/teamMember.d.ts +122 -0
- package/teamMember.js +90 -0
- package/teamMember.js.map +1 -0
- package/types/input.d.ts +108 -8
- package/types/output.d.ts +179 -7
- package/getProjectFunctionCpu.d.ts +0 -92
- package/getProjectFunctionCpu.js +0 -66
- package/getProjectFunctionCpu.js.map +0 -1
- package/package.json.bak +0 -27
- package/projectFunctionCpu.d.ts +0 -106
- package/projectFunctionCpu.js.map +0 -1
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
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
|
+
*/
|
|
18
|
+
export declare function getTeamMember(args: GetTeamMemberArgs, opts?: pulumi.InvokeOptions): Promise<GetTeamMemberResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getTeamMember.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTeamMemberArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the existing Vercel Team.
|
|
25
|
+
*/
|
|
26
|
+
teamId: string;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the existing Vercel Team Member.
|
|
29
|
+
*/
|
|
30
|
+
userId: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getTeamMember.
|
|
34
|
+
*/
|
|
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
|
+
*/
|
|
39
|
+
readonly accessGroups: string[];
|
|
40
|
+
/**
|
|
41
|
+
* The ID of this resource.
|
|
42
|
+
*/
|
|
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
|
+
*/
|
|
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
|
+
*/
|
|
51
|
+
readonly role: string;
|
|
52
|
+
/**
|
|
53
|
+
* The ID of the existing Vercel Team.
|
|
54
|
+
*/
|
|
55
|
+
readonly teamId: string;
|
|
56
|
+
/**
|
|
57
|
+
* The ID of the existing Vercel Team Member.
|
|
58
|
+
*/
|
|
59
|
+
readonly userId: string;
|
|
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
|
+
*/
|
|
76
|
+
export declare function getTeamMemberOutput(args: GetTeamMemberOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTeamMemberResult>;
|
|
77
|
+
/**
|
|
78
|
+
* A collection of arguments for invoking getTeamMember.
|
|
79
|
+
*/
|
|
80
|
+
export interface GetTeamMemberOutputArgs {
|
|
81
|
+
/**
|
|
82
|
+
* The ID of the existing Vercel Team.
|
|
83
|
+
*/
|
|
84
|
+
teamId: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The ID of the existing Vercel Team Member.
|
|
87
|
+
*/
|
|
88
|
+
userId: pulumi.Input<string>;
|
|
89
|
+
}
|
package/getTeamMember.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
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.getTeamMemberOutput = exports.getTeamMember = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
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
|
+
*/
|
|
23
|
+
function getTeamMember(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("vercel:index/getTeamMember:getTeamMember", {
|
|
26
|
+
"teamId": args.teamId,
|
|
27
|
+
"userId": args.userId,
|
|
28
|
+
}, opts);
|
|
29
|
+
}
|
|
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
|
+
*/
|
|
46
|
+
function getTeamMemberOutput(args, opts) {
|
|
47
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
48
|
+
return pulumi.runtime.invokeOutput("vercel:index/getTeamMember:getTeamMember", {
|
|
49
|
+
"teamId": args.teamId,
|
|
50
|
+
"userId": args.userId,
|
|
51
|
+
}, opts);
|
|
52
|
+
}
|
|
53
|
+
exports.getTeamMemberOutput = getTeamMemberOutput;
|
|
54
|
+
//# sourceMappingURL=getTeamMember.js.map
|
|
@@ -0,0 +1 @@
|
|
|
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/index.d.ts
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
+
export { AccessGroupArgs, AccessGroupState } from "./accessGroup";
|
|
2
|
+
export type AccessGroup = import("./accessGroup").AccessGroup;
|
|
3
|
+
export declare const AccessGroup: typeof import("./accessGroup").AccessGroup;
|
|
4
|
+
export { AccessGroupProjectArgs, AccessGroupProjectState } from "./accessGroupProject";
|
|
5
|
+
export type AccessGroupProject = import("./accessGroupProject").AccessGroupProject;
|
|
6
|
+
export declare const AccessGroupProject: typeof import("./accessGroupProject").AccessGroupProject;
|
|
1
7
|
export { AliasArgs, AliasState } from "./alias";
|
|
2
8
|
export type Alias = import("./alias").Alias;
|
|
3
9
|
export declare const Alias: typeof import("./alias").Alias;
|
|
4
10
|
export { AttackChallengeModeArgs, AttackChallengeModeState } from "./attackChallengeMode";
|
|
5
11
|
export type AttackChallengeMode = import("./attackChallengeMode").AttackChallengeMode;
|
|
6
12
|
export declare const AttackChallengeMode: typeof import("./attackChallengeMode").AttackChallengeMode;
|
|
13
|
+
export { CustomEnvironmentArgs, CustomEnvironmentState } from "./customEnvironment";
|
|
14
|
+
export type CustomEnvironment = import("./customEnvironment").CustomEnvironment;
|
|
15
|
+
export declare const CustomEnvironment: typeof import("./customEnvironment").CustomEnvironment;
|
|
7
16
|
export { DeploymentArgs, DeploymentState } from "./deployment";
|
|
8
17
|
export type Deployment = import("./deployment").Deployment;
|
|
9
18
|
export declare const Deployment: typeof import("./deployment").Deployment;
|
|
@@ -13,6 +22,9 @@ export declare const DnsRecord: typeof import("./dnsRecord").DnsRecord;
|
|
|
13
22
|
export { EdgeConfigArgs, EdgeConfigState } from "./edgeConfig";
|
|
14
23
|
export type EdgeConfig = import("./edgeConfig").EdgeConfig;
|
|
15
24
|
export declare const EdgeConfig: typeof import("./edgeConfig").EdgeConfig;
|
|
25
|
+
export { EdgeConfigItemArgs, EdgeConfigItemState } from "./edgeConfigItem";
|
|
26
|
+
export type EdgeConfigItem = import("./edgeConfigItem").EdgeConfigItem;
|
|
27
|
+
export declare const EdgeConfigItem: typeof import("./edgeConfigItem").EdgeConfigItem;
|
|
16
28
|
export { EdgeConfigSchemaArgs, EdgeConfigSchemaState } from "./edgeConfigSchema";
|
|
17
29
|
export type EdgeConfigSchema = import("./edgeConfigSchema").EdgeConfigSchema;
|
|
18
30
|
export declare const EdgeConfigSchema: typeof import("./edgeConfigSchema").EdgeConfigSchema;
|
|
@@ -22,18 +34,30 @@ export declare const EdgeConfigToken: typeof import("./edgeConfigToken").EdgeCon
|
|
|
22
34
|
export { FirewallConfigArgs, FirewallConfigState } from "./firewallConfig";
|
|
23
35
|
export type FirewallConfig = import("./firewallConfig").FirewallConfig;
|
|
24
36
|
export declare const FirewallConfig: typeof import("./firewallConfig").FirewallConfig;
|
|
37
|
+
export { GetAccessGroupArgs, GetAccessGroupResult, GetAccessGroupOutputArgs } from "./getAccessGroup";
|
|
38
|
+
export declare const getAccessGroup: typeof import("./getAccessGroup").getAccessGroup;
|
|
39
|
+
export declare const getAccessGroupOutput: typeof import("./getAccessGroup").getAccessGroupOutput;
|
|
40
|
+
export { GetAccessGroupProjectArgs, GetAccessGroupProjectResult, GetAccessGroupProjectOutputArgs } from "./getAccessGroupProject";
|
|
41
|
+
export declare const getAccessGroupProject: typeof import("./getAccessGroupProject").getAccessGroupProject;
|
|
42
|
+
export declare const getAccessGroupProjectOutput: typeof import("./getAccessGroupProject").getAccessGroupProjectOutput;
|
|
25
43
|
export { GetAliasArgs, GetAliasResult, GetAliasOutputArgs } from "./getAlias";
|
|
26
44
|
export declare const getAlias: typeof import("./getAlias").getAlias;
|
|
27
45
|
export declare const getAliasOutput: typeof import("./getAlias").getAliasOutput;
|
|
28
46
|
export { GetAttackChallengeModeArgs, GetAttackChallengeModeResult, GetAttackChallengeModeOutputArgs } from "./getAttackChallengeMode";
|
|
29
47
|
export declare const getAttackChallengeMode: typeof import("./getAttackChallengeMode").getAttackChallengeMode;
|
|
30
48
|
export declare const getAttackChallengeModeOutput: typeof import("./getAttackChallengeMode").getAttackChallengeModeOutput;
|
|
49
|
+
export { GetCustomEnvironmentArgs, GetCustomEnvironmentResult, GetCustomEnvironmentOutputArgs } from "./getCustomEnvironment";
|
|
50
|
+
export declare const getCustomEnvironment: typeof import("./getCustomEnvironment").getCustomEnvironment;
|
|
51
|
+
export declare const getCustomEnvironmentOutput: typeof import("./getCustomEnvironment").getCustomEnvironmentOutput;
|
|
31
52
|
export { GetDeploymentArgs, GetDeploymentResult, GetDeploymentOutputArgs } from "./getDeployment";
|
|
32
53
|
export declare const getDeployment: typeof import("./getDeployment").getDeployment;
|
|
33
54
|
export declare const getDeploymentOutput: typeof import("./getDeployment").getDeploymentOutput;
|
|
34
55
|
export { GetEdgeConfigArgs, GetEdgeConfigResult, GetEdgeConfigOutputArgs } from "./getEdgeConfig";
|
|
35
56
|
export declare const getEdgeConfig: typeof import("./getEdgeConfig").getEdgeConfig;
|
|
36
57
|
export declare const getEdgeConfigOutput: typeof import("./getEdgeConfig").getEdgeConfigOutput;
|
|
58
|
+
export { GetEdgeConfigItemArgs, GetEdgeConfigItemResult, GetEdgeConfigItemOutputArgs } from "./getEdgeConfigItem";
|
|
59
|
+
export declare const getEdgeConfigItem: typeof import("./getEdgeConfigItem").getEdgeConfigItem;
|
|
60
|
+
export declare const getEdgeConfigItemOutput: typeof import("./getEdgeConfigItem").getEdgeConfigItemOutput;
|
|
37
61
|
export { GetEdgeConfigSchemaArgs, GetEdgeConfigSchemaResult, GetEdgeConfigSchemaOutputArgs } from "./getEdgeConfigSchema";
|
|
38
62
|
export declare const getEdgeConfigSchema: typeof import("./getEdgeConfigSchema").getEdgeConfigSchema;
|
|
39
63
|
export declare const getEdgeConfigSchemaOutput: typeof import("./getEdgeConfigSchema").getEdgeConfigSchemaOutput;
|
|
@@ -61,12 +85,18 @@ export declare const getProjectDeploymentRetentionOutput: typeof import("./getPr
|
|
|
61
85
|
export { GetProjectDirectoryArgs, GetProjectDirectoryResult, GetProjectDirectoryOutputArgs } from "./getProjectDirectory";
|
|
62
86
|
export declare const getProjectDirectory: typeof import("./getProjectDirectory").getProjectDirectory;
|
|
63
87
|
export declare const getProjectDirectoryOutput: typeof import("./getProjectDirectory").getProjectDirectoryOutput;
|
|
64
|
-
export {
|
|
65
|
-
export declare const
|
|
66
|
-
export declare const
|
|
88
|
+
export { GetProjectMembersArgs, GetProjectMembersResult, GetProjectMembersOutputArgs } from "./getProjectMembers";
|
|
89
|
+
export declare const getProjectMembers: typeof import("./getProjectMembers").getProjectMembers;
|
|
90
|
+
export declare const getProjectMembersOutput: typeof import("./getProjectMembers").getProjectMembersOutput;
|
|
67
91
|
export { GetSharedEnvironmentVariableArgs, GetSharedEnvironmentVariableResult, GetSharedEnvironmentVariableOutputArgs } from "./getSharedEnvironmentVariable";
|
|
68
92
|
export declare const getSharedEnvironmentVariable: typeof import("./getSharedEnvironmentVariable").getSharedEnvironmentVariable;
|
|
69
93
|
export declare const getSharedEnvironmentVariableOutput: typeof import("./getSharedEnvironmentVariable").getSharedEnvironmentVariableOutput;
|
|
94
|
+
export { GetTeamConfigArgs, GetTeamConfigResult, GetTeamConfigOutputArgs } from "./getTeamConfig";
|
|
95
|
+
export declare const getTeamConfig: typeof import("./getTeamConfig").getTeamConfig;
|
|
96
|
+
export declare const getTeamConfigOutput: typeof import("./getTeamConfig").getTeamConfigOutput;
|
|
97
|
+
export { GetTeamMemberArgs, GetTeamMemberResult, GetTeamMemberOutputArgs } from "./getTeamMember";
|
|
98
|
+
export declare const getTeamMember: typeof import("./getTeamMember").getTeamMember;
|
|
99
|
+
export declare const getTeamMemberOutput: typeof import("./getTeamMember").getTeamMemberOutput;
|
|
70
100
|
export { LogDrainArgs, LogDrainState } from "./logDrain";
|
|
71
101
|
export type LogDrain = import("./logDrain").LogDrain;
|
|
72
102
|
export declare const LogDrain: typeof import("./logDrain").LogDrain;
|
|
@@ -82,15 +112,24 @@ export declare const ProjectDomain: typeof import("./projectDomain").ProjectDoma
|
|
|
82
112
|
export { ProjectEnvironmentVariableArgs, ProjectEnvironmentVariableState } from "./projectEnvironmentVariable";
|
|
83
113
|
export type ProjectEnvironmentVariable = import("./projectEnvironmentVariable").ProjectEnvironmentVariable;
|
|
84
114
|
export declare const ProjectEnvironmentVariable: typeof import("./projectEnvironmentVariable").ProjectEnvironmentVariable;
|
|
85
|
-
export {
|
|
86
|
-
export type
|
|
87
|
-
export declare const
|
|
115
|
+
export { ProjectEnvironmentVariablesArgs, ProjectEnvironmentVariablesState } from "./projectEnvironmentVariables";
|
|
116
|
+
export type ProjectEnvironmentVariables = import("./projectEnvironmentVariables").ProjectEnvironmentVariables;
|
|
117
|
+
export declare const ProjectEnvironmentVariables: typeof import("./projectEnvironmentVariables").ProjectEnvironmentVariables;
|
|
118
|
+
export { ProjectMembersArgs, ProjectMembersState } from "./projectMembers";
|
|
119
|
+
export type ProjectMembers = import("./projectMembers").ProjectMembers;
|
|
120
|
+
export declare const ProjectMembers: typeof import("./projectMembers").ProjectMembers;
|
|
88
121
|
export { ProviderArgs } from "./provider";
|
|
89
122
|
export type Provider = import("./provider").Provider;
|
|
90
123
|
export declare const Provider: typeof import("./provider").Provider;
|
|
91
124
|
export { SharedEnvironmentVariableArgs, SharedEnvironmentVariableState } from "./sharedEnvironmentVariable";
|
|
92
125
|
export type SharedEnvironmentVariable = import("./sharedEnvironmentVariable").SharedEnvironmentVariable;
|
|
93
126
|
export declare const SharedEnvironmentVariable: typeof import("./sharedEnvironmentVariable").SharedEnvironmentVariable;
|
|
127
|
+
export { TeamConfigArgs, TeamConfigState } from "./teamConfig";
|
|
128
|
+
export type TeamConfig = import("./teamConfig").TeamConfig;
|
|
129
|
+
export declare const TeamConfig: typeof import("./teamConfig").TeamConfig;
|
|
130
|
+
export { TeamMemberArgs, TeamMemberState } from "./teamMember";
|
|
131
|
+
export type TeamMember = import("./teamMember").TeamMember;
|
|
132
|
+
export declare const TeamMember: typeof import("./teamMember").TeamMember;
|
|
94
133
|
export { WebhookArgs, WebhookState } from "./webhook";
|
|
95
134
|
export type Webhook = import("./webhook").Webhook;
|
|
96
135
|
export declare const Webhook: typeof import("./webhook").Webhook;
|
package/index.js
CHANGED
|
@@ -2,37 +2,58 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.getSharedEnvironmentVariableOutput = exports.getSharedEnvironmentVariable = exports.getProjectMembersOutput = exports.getProjectMembers = exports.getProjectDirectoryOutput = exports.getProjectDirectory = exports.getProjectDeploymentRetentionOutput = exports.getProjectDeploymentRetention = exports.getProjectOutput = exports.getProject = exports.getPrebuiltProjectOutput = exports.getPrebuiltProject = exports.getLogDrainOutput = exports.getLogDrain = exports.getFileOutput = exports.getFile = exports.getEndpointVerificationOutput = exports.getEndpointVerification = exports.getEdgeConfigTokenOutput = exports.getEdgeConfigToken = exports.getEdgeConfigSchemaOutput = exports.getEdgeConfigSchema = exports.getEdgeConfigItemOutput = exports.getEdgeConfigItem = exports.getEdgeConfigOutput = exports.getEdgeConfig = exports.getDeploymentOutput = exports.getDeployment = exports.getCustomEnvironmentOutput = exports.getCustomEnvironment = exports.getAttackChallengeModeOutput = exports.getAttackChallengeMode = exports.getAliasOutput = exports.getAlias = exports.getAccessGroupProjectOutput = exports.getAccessGroupProject = exports.getAccessGroupOutput = exports.getAccessGroup = exports.FirewallConfig = exports.EdgeConfigToken = exports.EdgeConfigSchema = exports.EdgeConfigItem = exports.EdgeConfig = exports.DnsRecord = exports.Deployment = exports.CustomEnvironment = exports.AttackChallengeMode = exports.Alias = exports.AccessGroupProject = exports.AccessGroup = void 0;
|
|
6
|
+
exports.types = exports.config = exports.Webhook = exports.TeamMember = exports.TeamConfig = exports.SharedEnvironmentVariable = exports.Provider = exports.ProjectMembers = exports.ProjectEnvironmentVariables = exports.ProjectEnvironmentVariable = exports.ProjectDomain = exports.ProjectDeploymentRetention = exports.Project = exports.LogDrain = exports.getTeamMemberOutput = exports.getTeamMember = exports.getTeamConfigOutput = exports.getTeamConfig = void 0;
|
|
6
7
|
const pulumi = require("@pulumi/pulumi");
|
|
7
8
|
const utilities = require("./utilities");
|
|
9
|
+
exports.AccessGroup = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["AccessGroup"], () => require("./accessGroup"));
|
|
11
|
+
exports.AccessGroupProject = null;
|
|
12
|
+
utilities.lazyLoad(exports, ["AccessGroupProject"], () => require("./accessGroupProject"));
|
|
8
13
|
exports.Alias = null;
|
|
9
14
|
utilities.lazyLoad(exports, ["Alias"], () => require("./alias"));
|
|
10
15
|
exports.AttackChallengeMode = null;
|
|
11
16
|
utilities.lazyLoad(exports, ["AttackChallengeMode"], () => require("./attackChallengeMode"));
|
|
17
|
+
exports.CustomEnvironment = null;
|
|
18
|
+
utilities.lazyLoad(exports, ["CustomEnvironment"], () => require("./customEnvironment"));
|
|
12
19
|
exports.Deployment = null;
|
|
13
20
|
utilities.lazyLoad(exports, ["Deployment"], () => require("./deployment"));
|
|
14
21
|
exports.DnsRecord = null;
|
|
15
22
|
utilities.lazyLoad(exports, ["DnsRecord"], () => require("./dnsRecord"));
|
|
16
23
|
exports.EdgeConfig = null;
|
|
17
24
|
utilities.lazyLoad(exports, ["EdgeConfig"], () => require("./edgeConfig"));
|
|
25
|
+
exports.EdgeConfigItem = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["EdgeConfigItem"], () => require("./edgeConfigItem"));
|
|
18
27
|
exports.EdgeConfigSchema = null;
|
|
19
28
|
utilities.lazyLoad(exports, ["EdgeConfigSchema"], () => require("./edgeConfigSchema"));
|
|
20
29
|
exports.EdgeConfigToken = null;
|
|
21
30
|
utilities.lazyLoad(exports, ["EdgeConfigToken"], () => require("./edgeConfigToken"));
|
|
22
31
|
exports.FirewallConfig = null;
|
|
23
32
|
utilities.lazyLoad(exports, ["FirewallConfig"], () => require("./firewallConfig"));
|
|
33
|
+
exports.getAccessGroup = null;
|
|
34
|
+
exports.getAccessGroupOutput = null;
|
|
35
|
+
utilities.lazyLoad(exports, ["getAccessGroup", "getAccessGroupOutput"], () => require("./getAccessGroup"));
|
|
36
|
+
exports.getAccessGroupProject = null;
|
|
37
|
+
exports.getAccessGroupProjectOutput = null;
|
|
38
|
+
utilities.lazyLoad(exports, ["getAccessGroupProject", "getAccessGroupProjectOutput"], () => require("./getAccessGroupProject"));
|
|
24
39
|
exports.getAlias = null;
|
|
25
40
|
exports.getAliasOutput = null;
|
|
26
41
|
utilities.lazyLoad(exports, ["getAlias", "getAliasOutput"], () => require("./getAlias"));
|
|
27
42
|
exports.getAttackChallengeMode = null;
|
|
28
43
|
exports.getAttackChallengeModeOutput = null;
|
|
29
44
|
utilities.lazyLoad(exports, ["getAttackChallengeMode", "getAttackChallengeModeOutput"], () => require("./getAttackChallengeMode"));
|
|
45
|
+
exports.getCustomEnvironment = null;
|
|
46
|
+
exports.getCustomEnvironmentOutput = null;
|
|
47
|
+
utilities.lazyLoad(exports, ["getCustomEnvironment", "getCustomEnvironmentOutput"], () => require("./getCustomEnvironment"));
|
|
30
48
|
exports.getDeployment = null;
|
|
31
49
|
exports.getDeploymentOutput = null;
|
|
32
50
|
utilities.lazyLoad(exports, ["getDeployment", "getDeploymentOutput"], () => require("./getDeployment"));
|
|
33
51
|
exports.getEdgeConfig = null;
|
|
34
52
|
exports.getEdgeConfigOutput = null;
|
|
35
53
|
utilities.lazyLoad(exports, ["getEdgeConfig", "getEdgeConfigOutput"], () => require("./getEdgeConfig"));
|
|
54
|
+
exports.getEdgeConfigItem = null;
|
|
55
|
+
exports.getEdgeConfigItemOutput = null;
|
|
56
|
+
utilities.lazyLoad(exports, ["getEdgeConfigItem", "getEdgeConfigItemOutput"], () => require("./getEdgeConfigItem"));
|
|
36
57
|
exports.getEdgeConfigSchema = null;
|
|
37
58
|
exports.getEdgeConfigSchemaOutput = null;
|
|
38
59
|
utilities.lazyLoad(exports, ["getEdgeConfigSchema", "getEdgeConfigSchemaOutput"], () => require("./getEdgeConfigSchema"));
|
|
@@ -60,12 +81,18 @@ utilities.lazyLoad(exports, ["getProjectDeploymentRetention", "getProjectDeploym
|
|
|
60
81
|
exports.getProjectDirectory = null;
|
|
61
82
|
exports.getProjectDirectoryOutput = null;
|
|
62
83
|
utilities.lazyLoad(exports, ["getProjectDirectory", "getProjectDirectoryOutput"], () => require("./getProjectDirectory"));
|
|
63
|
-
exports.
|
|
64
|
-
exports.
|
|
65
|
-
utilities.lazyLoad(exports, ["
|
|
84
|
+
exports.getProjectMembers = null;
|
|
85
|
+
exports.getProjectMembersOutput = null;
|
|
86
|
+
utilities.lazyLoad(exports, ["getProjectMembers", "getProjectMembersOutput"], () => require("./getProjectMembers"));
|
|
66
87
|
exports.getSharedEnvironmentVariable = null;
|
|
67
88
|
exports.getSharedEnvironmentVariableOutput = null;
|
|
68
89
|
utilities.lazyLoad(exports, ["getSharedEnvironmentVariable", "getSharedEnvironmentVariableOutput"], () => require("./getSharedEnvironmentVariable"));
|
|
90
|
+
exports.getTeamConfig = null;
|
|
91
|
+
exports.getTeamConfigOutput = null;
|
|
92
|
+
utilities.lazyLoad(exports, ["getTeamConfig", "getTeamConfigOutput"], () => require("./getTeamConfig"));
|
|
93
|
+
exports.getTeamMember = null;
|
|
94
|
+
exports.getTeamMemberOutput = null;
|
|
95
|
+
utilities.lazyLoad(exports, ["getTeamMember", "getTeamMemberOutput"], () => require("./getTeamMember"));
|
|
69
96
|
exports.LogDrain = null;
|
|
70
97
|
utilities.lazyLoad(exports, ["LogDrain"], () => require("./logDrain"));
|
|
71
98
|
exports.Project = null;
|
|
@@ -76,12 +103,18 @@ exports.ProjectDomain = null;
|
|
|
76
103
|
utilities.lazyLoad(exports, ["ProjectDomain"], () => require("./projectDomain"));
|
|
77
104
|
exports.ProjectEnvironmentVariable = null;
|
|
78
105
|
utilities.lazyLoad(exports, ["ProjectEnvironmentVariable"], () => require("./projectEnvironmentVariable"));
|
|
79
|
-
exports.
|
|
80
|
-
utilities.lazyLoad(exports, ["
|
|
106
|
+
exports.ProjectEnvironmentVariables = null;
|
|
107
|
+
utilities.lazyLoad(exports, ["ProjectEnvironmentVariables"], () => require("./projectEnvironmentVariables"));
|
|
108
|
+
exports.ProjectMembers = null;
|
|
109
|
+
utilities.lazyLoad(exports, ["ProjectMembers"], () => require("./projectMembers"));
|
|
81
110
|
exports.Provider = null;
|
|
82
111
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
83
112
|
exports.SharedEnvironmentVariable = null;
|
|
84
113
|
utilities.lazyLoad(exports, ["SharedEnvironmentVariable"], () => require("./sharedEnvironmentVariable"));
|
|
114
|
+
exports.TeamConfig = null;
|
|
115
|
+
utilities.lazyLoad(exports, ["TeamConfig"], () => require("./teamConfig"));
|
|
116
|
+
exports.TeamMember = null;
|
|
117
|
+
utilities.lazyLoad(exports, ["TeamMember"], () => require("./teamMember"));
|
|
85
118
|
exports.Webhook = null;
|
|
86
119
|
utilities.lazyLoad(exports, ["Webhook"], () => require("./webhook"));
|
|
87
120
|
// Export sub-modules:
|
|
@@ -93,16 +126,24 @@ const _module = {
|
|
|
93
126
|
version: utilities.getVersion(),
|
|
94
127
|
construct: (name, type, urn) => {
|
|
95
128
|
switch (type) {
|
|
129
|
+
case "vercel:index/accessGroup:AccessGroup":
|
|
130
|
+
return new exports.AccessGroup(name, undefined, { urn });
|
|
131
|
+
case "vercel:index/accessGroupProject:AccessGroupProject":
|
|
132
|
+
return new exports.AccessGroupProject(name, undefined, { urn });
|
|
96
133
|
case "vercel:index/alias:Alias":
|
|
97
134
|
return new exports.Alias(name, undefined, { urn });
|
|
98
135
|
case "vercel:index/attackChallengeMode:AttackChallengeMode":
|
|
99
136
|
return new exports.AttackChallengeMode(name, undefined, { urn });
|
|
137
|
+
case "vercel:index/customEnvironment:CustomEnvironment":
|
|
138
|
+
return new exports.CustomEnvironment(name, undefined, { urn });
|
|
100
139
|
case "vercel:index/deployment:Deployment":
|
|
101
140
|
return new exports.Deployment(name, undefined, { urn });
|
|
102
141
|
case "vercel:index/dnsRecord:DnsRecord":
|
|
103
142
|
return new exports.DnsRecord(name, undefined, { urn });
|
|
104
143
|
case "vercel:index/edgeConfig:EdgeConfig":
|
|
105
144
|
return new exports.EdgeConfig(name, undefined, { urn });
|
|
145
|
+
case "vercel:index/edgeConfigItem:EdgeConfigItem":
|
|
146
|
+
return new exports.EdgeConfigItem(name, undefined, { urn });
|
|
106
147
|
case "vercel:index/edgeConfigSchema:EdgeConfigSchema":
|
|
107
148
|
return new exports.EdgeConfigSchema(name, undefined, { urn });
|
|
108
149
|
case "vercel:index/edgeConfigToken:EdgeConfigToken":
|
|
@@ -119,10 +160,16 @@ const _module = {
|
|
|
119
160
|
return new exports.ProjectDomain(name, undefined, { urn });
|
|
120
161
|
case "vercel:index/projectEnvironmentVariable:ProjectEnvironmentVariable":
|
|
121
162
|
return new exports.ProjectEnvironmentVariable(name, undefined, { urn });
|
|
122
|
-
case "vercel:index/
|
|
123
|
-
return new exports.
|
|
163
|
+
case "vercel:index/projectEnvironmentVariables:ProjectEnvironmentVariables":
|
|
164
|
+
return new exports.ProjectEnvironmentVariables(name, undefined, { urn });
|
|
165
|
+
case "vercel:index/projectMembers:ProjectMembers":
|
|
166
|
+
return new exports.ProjectMembers(name, undefined, { urn });
|
|
124
167
|
case "vercel:index/sharedEnvironmentVariable:SharedEnvironmentVariable":
|
|
125
168
|
return new exports.SharedEnvironmentVariable(name, undefined, { urn });
|
|
169
|
+
case "vercel:index/teamConfig:TeamConfig":
|
|
170
|
+
return new exports.TeamConfig(name, undefined, { urn });
|
|
171
|
+
case "vercel:index/teamMember:TeamMember":
|
|
172
|
+
return new exports.TeamMember(name, undefined, { urn });
|
|
126
173
|
case "vercel:index/webhook:Webhook":
|
|
127
174
|
return new exports.Webhook(name, undefined, { urn });
|
|
128
175
|
default:
|
|
@@ -130,11 +177,15 @@ const _module = {
|
|
|
130
177
|
}
|
|
131
178
|
},
|
|
132
179
|
};
|
|
180
|
+
pulumi.runtime.registerResourceModule("vercel", "index/accessGroup", _module);
|
|
181
|
+
pulumi.runtime.registerResourceModule("vercel", "index/accessGroupProject", _module);
|
|
133
182
|
pulumi.runtime.registerResourceModule("vercel", "index/alias", _module);
|
|
134
183
|
pulumi.runtime.registerResourceModule("vercel", "index/attackChallengeMode", _module);
|
|
184
|
+
pulumi.runtime.registerResourceModule("vercel", "index/customEnvironment", _module);
|
|
135
185
|
pulumi.runtime.registerResourceModule("vercel", "index/deployment", _module);
|
|
136
186
|
pulumi.runtime.registerResourceModule("vercel", "index/dnsRecord", _module);
|
|
137
187
|
pulumi.runtime.registerResourceModule("vercel", "index/edgeConfig", _module);
|
|
188
|
+
pulumi.runtime.registerResourceModule("vercel", "index/edgeConfigItem", _module);
|
|
138
189
|
pulumi.runtime.registerResourceModule("vercel", "index/edgeConfigSchema", _module);
|
|
139
190
|
pulumi.runtime.registerResourceModule("vercel", "index/edgeConfigToken", _module);
|
|
140
191
|
pulumi.runtime.registerResourceModule("vercel", "index/firewallConfig", _module);
|
|
@@ -143,8 +194,11 @@ pulumi.runtime.registerResourceModule("vercel", "index/project", _module);
|
|
|
143
194
|
pulumi.runtime.registerResourceModule("vercel", "index/projectDeploymentRetention", _module);
|
|
144
195
|
pulumi.runtime.registerResourceModule("vercel", "index/projectDomain", _module);
|
|
145
196
|
pulumi.runtime.registerResourceModule("vercel", "index/projectEnvironmentVariable", _module);
|
|
146
|
-
pulumi.runtime.registerResourceModule("vercel", "index/
|
|
197
|
+
pulumi.runtime.registerResourceModule("vercel", "index/projectEnvironmentVariables", _module);
|
|
198
|
+
pulumi.runtime.registerResourceModule("vercel", "index/projectMembers", _module);
|
|
147
199
|
pulumi.runtime.registerResourceModule("vercel", "index/sharedEnvironmentVariable", _module);
|
|
200
|
+
pulumi.runtime.registerResourceModule("vercel", "index/teamConfig", _module);
|
|
201
|
+
pulumi.runtime.registerResourceModule("vercel", "index/teamMember", _module);
|
|
148
202
|
pulumi.runtime.registerResourceModule("vercel", "index/webhook", _module);
|
|
149
203
|
pulumi.runtime.registerResourcePackage("vercel", {
|
|
150
204
|
version: utilities.getVersion(),
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/logDrain.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
42
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
43
|
*
|
|
44
44
|
* ```sh
|
|
45
|
-
* $ pulumi import vercel:index/logDrain:LogDrain example
|
|
45
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
46
46
|
* ```
|
|
47
47
|
*
|
|
48
48
|
* Alternatively, you can import via the team_id and edge_config_id.
|
|
@@ -52,7 +52,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
52
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
53
|
*
|
|
54
54
|
* ```sh
|
|
55
|
-
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/
|
|
55
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
56
56
|
* ```
|
|
57
57
|
*/
|
|
58
58
|
export declare class LogDrain extends pulumi.CustomResource {
|
package/logDrain.js
CHANGED
|
@@ -48,7 +48,7 @@ const utilities = require("./utilities");
|
|
|
48
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
49
|
*
|
|
50
50
|
* ```sh
|
|
51
|
-
* $ pulumi import vercel:index/logDrain:LogDrain example
|
|
51
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
52
52
|
* ```
|
|
53
53
|
*
|
|
54
54
|
* Alternatively, you can import via the team_id and edge_config_id.
|
|
@@ -58,7 +58,7 @@ const utilities = require("./utilities");
|
|
|
58
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
59
|
*
|
|
60
60
|
* ```sh
|
|
61
|
-
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/
|
|
61
|
+
* $ pulumi import vercel:index/logDrain:LogDrain example team_xxxxxxxxxxxxxxxxxxxxxxxx/ld_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
62
62
|
* ```
|
|
63
63
|
*/
|
|
64
64
|
class LogDrain extends pulumi.CustomResource {
|
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
|
}
|
package/project.d.ts
CHANGED
|
@@ -151,11 +151,11 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
151
151
|
*/
|
|
152
152
|
readonly prioritiseProductionBuilds: pulumi.Output<boolean>;
|
|
153
153
|
/**
|
|
154
|
-
* Allow automation services to bypass
|
|
154
|
+
* Allow automation services to bypass Deployment Protection on this project when using an HTTP header named `x-vercel-protection-bypass` with a value of the `protectionBypassForAutomationSecret` field.
|
|
155
155
|
*/
|
|
156
156
|
readonly protectionBypassForAutomation: pulumi.Output<boolean | undefined>;
|
|
157
157
|
/**
|
|
158
|
-
* If `protectionBypassForAutomation` is enabled,
|
|
158
|
+
* If `protectionBypassForAutomation` is enabled, optionally set this value to specify a 32 character secret, otherwise a secret will be generated.
|
|
159
159
|
*/
|
|
160
160
|
readonly protectionBypassForAutomationSecret: pulumi.Output<string>;
|
|
161
161
|
/**
|
|
@@ -292,11 +292,11 @@ export interface ProjectState {
|
|
|
292
292
|
*/
|
|
293
293
|
prioritiseProductionBuilds?: pulumi.Input<boolean>;
|
|
294
294
|
/**
|
|
295
|
-
* Allow automation services to bypass
|
|
295
|
+
* Allow automation services to bypass Deployment Protection on this project when using an HTTP header named `x-vercel-protection-bypass` with a value of the `protectionBypassForAutomationSecret` field.
|
|
296
296
|
*/
|
|
297
297
|
protectionBypassForAutomation?: pulumi.Input<boolean>;
|
|
298
298
|
/**
|
|
299
|
-
* If `protectionBypassForAutomation` is enabled,
|
|
299
|
+
* If `protectionBypassForAutomation` is enabled, optionally set this value to specify a 32 character secret, otherwise a secret will be generated.
|
|
300
300
|
*/
|
|
301
301
|
protectionBypassForAutomationSecret?: pulumi.Input<string>;
|
|
302
302
|
/**
|
|
@@ -425,9 +425,13 @@ export interface ProjectArgs {
|
|
|
425
425
|
*/
|
|
426
426
|
prioritiseProductionBuilds?: pulumi.Input<boolean>;
|
|
427
427
|
/**
|
|
428
|
-
* Allow automation services to bypass
|
|
428
|
+
* Allow automation services to bypass Deployment Protection on this project when using an HTTP header named `x-vercel-protection-bypass` with a value of the `protectionBypassForAutomationSecret` field.
|
|
429
429
|
*/
|
|
430
430
|
protectionBypassForAutomation?: pulumi.Input<boolean>;
|
|
431
|
+
/**
|
|
432
|
+
* If `protectionBypassForAutomation` is enabled, optionally set this value to specify a 32 character secret, otherwise a secret will be generated.
|
|
433
|
+
*/
|
|
434
|
+
protectionBypassForAutomationSecret?: pulumi.Input<string>;
|
|
431
435
|
/**
|
|
432
436
|
* By default, visitors to the `/_logs` and `/_src` paths of your Production and Preview Deployments must log in with Vercel (requires being a member of your team) to see the Source, Logs and Deployment Status of your project. Setting `publicSource` to `true` disables this behaviour, meaning the Source, Logs and Deployment Status can be publicly viewed.
|
|
433
437
|
*/
|
package/project.js
CHANGED
|
@@ -136,6 +136,7 @@ class Project extends pulumi.CustomResource {
|
|
|
136
136
|
resourceInputs["previewComments"] = args ? args.previewComments : undefined;
|
|
137
137
|
resourceInputs["prioritiseProductionBuilds"] = args ? args.prioritiseProductionBuilds : undefined;
|
|
138
138
|
resourceInputs["protectionBypassForAutomation"] = args ? args.protectionBypassForAutomation : undefined;
|
|
139
|
+
resourceInputs["protectionBypassForAutomationSecret"] = (args === null || args === void 0 ? void 0 : args.protectionBypassForAutomationSecret) ? pulumi.secret(args.protectionBypassForAutomationSecret) : undefined;
|
|
139
140
|
resourceInputs["publicSource"] = args ? args.publicSource : undefined;
|
|
140
141
|
resourceInputs["resourceConfig"] = args ? args.resourceConfig : undefined;
|
|
141
142
|
resourceInputs["rootDirectory"] = args ? args.rootDirectory : undefined;
|
|
@@ -144,9 +145,10 @@ class Project extends pulumi.CustomResource {
|
|
|
144
145
|
resourceInputs["teamId"] = args ? args.teamId : undefined;
|
|
145
146
|
resourceInputs["trustedIps"] = args ? args.trustedIps : undefined;
|
|
146
147
|
resourceInputs["vercelAuthentication"] = args ? args.vercelAuthentication : undefined;
|
|
147
|
-
resourceInputs["protectionBypassForAutomationSecret"] = undefined /*out*/;
|
|
148
148
|
}
|
|
149
149
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
150
|
+
const secretOpts = { additionalSecretOutputs: ["protectionBypassForAutomationSecret"] };
|
|
151
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
150
152
|
super(Project.__pulumiType, name, resourceInputs, opts);
|
|
151
153
|
}
|
|
152
154
|
}
|