@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
package/project.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
-
* <!--Start PulumiCodeChooser -->
|
|
8
7
|
* ```typescript
|
|
9
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
10
9
|
* import * as vercel from "@pulumiverse/vercel";
|
|
@@ -24,7 +23,6 @@ import * as outputs from "./types/output";
|
|
|
24
23
|
* // terraform, or via the vercel CLI.
|
|
25
24
|
* const example = new vercel.Project("example", {framework: "nextjs"});
|
|
26
25
|
* ```
|
|
27
|
-
* <!--End PulumiCodeChooser -->
|
|
28
26
|
*
|
|
29
27
|
* ## Import
|
|
30
28
|
*
|
|
@@ -64,14 +62,30 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
64
62
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
65
63
|
*/
|
|
66
64
|
static isInstance(obj: any): obj is Project;
|
|
65
|
+
/**
|
|
66
|
+
* Automatically assign custom production domains after each Production deployment via merge to the production branch or Vercel CLI deploy with --prod. Defaults to `true`
|
|
67
|
+
*/
|
|
68
|
+
readonly autoAssignCustomDomains: pulumi.Output<boolean>;
|
|
69
|
+
/**
|
|
70
|
+
* 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
|
|
71
|
+
*/
|
|
72
|
+
readonly automaticallyExposeSystemEnvironmentVariables: pulumi.Output<boolean>;
|
|
67
73
|
/**
|
|
68
74
|
* The build command for this project. If omitted, this value will be automatically detected.
|
|
69
75
|
*/
|
|
70
76
|
readonly buildCommand: pulumi.Output<string | undefined>;
|
|
77
|
+
/**
|
|
78
|
+
* Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
|
|
79
|
+
*/
|
|
80
|
+
readonly customerSuccessCodeVisibility: pulumi.Output<boolean>;
|
|
71
81
|
/**
|
|
72
82
|
* The dev command for this project. If omitted, this value will be automatically detected.
|
|
73
83
|
*/
|
|
74
84
|
readonly devCommand: pulumi.Output<string | undefined>;
|
|
85
|
+
/**
|
|
86
|
+
* If no index file is present within a directory, the directory contents will be displayed.
|
|
87
|
+
*/
|
|
88
|
+
readonly directoryListing: pulumi.Output<boolean>;
|
|
75
89
|
/**
|
|
76
90
|
* A set of Environment Variables that should be configured for the project.
|
|
77
91
|
*/
|
|
@@ -80,6 +94,22 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
80
94
|
* The framework that is being used for this project. If omitted, no framework is selected.
|
|
81
95
|
*/
|
|
82
96
|
readonly framework: pulumi.Output<string | undefined>;
|
|
97
|
+
/**
|
|
98
|
+
* 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.
|
|
99
|
+
*/
|
|
100
|
+
readonly functionFailover: pulumi.Output<boolean>;
|
|
101
|
+
/**
|
|
102
|
+
* Configuration for Git Comments.
|
|
103
|
+
*/
|
|
104
|
+
readonly gitComments: pulumi.Output<outputs.ProjectGitComments | undefined>;
|
|
105
|
+
/**
|
|
106
|
+
* 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. Defaults to `true`.
|
|
107
|
+
*/
|
|
108
|
+
readonly gitForkProtection: pulumi.Output<boolean>;
|
|
109
|
+
/**
|
|
110
|
+
* 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.
|
|
111
|
+
*/
|
|
112
|
+
readonly gitLfs: pulumi.Output<boolean>;
|
|
83
113
|
/**
|
|
84
114
|
* 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.
|
|
85
115
|
*/
|
|
@@ -104,6 +134,14 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
104
134
|
* Ensures visitors of your Preview Deployments must enter a password in order to gain access.
|
|
105
135
|
*/
|
|
106
136
|
readonly passwordProtection: pulumi.Output<outputs.ProjectPasswordProtection | undefined>;
|
|
137
|
+
/**
|
|
138
|
+
* Whether to enable comments on your Preview Deployments. If omitted, comments are controlled at the team level (default behaviour).
|
|
139
|
+
*/
|
|
140
|
+
readonly previewComments: pulumi.Output<boolean | undefined>;
|
|
141
|
+
/**
|
|
142
|
+
* If enabled, builds for the Production environment will be prioritized over Preview environments.
|
|
143
|
+
*/
|
|
144
|
+
readonly prioritiseProductionBuilds: pulumi.Output<boolean>;
|
|
107
145
|
/**
|
|
108
146
|
* Allow 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` with a value of the `passwordProtectionForAutomationSecret` field.
|
|
109
147
|
*/
|
|
@@ -124,6 +162,10 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
124
162
|
* 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.
|
|
125
163
|
*/
|
|
126
164
|
readonly serverlessFunctionRegion: pulumi.Output<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Ensures that outdated clients always fetch the correct version for a given deployment. This value defines how long Vercel keeps Skew Protection active.
|
|
167
|
+
*/
|
|
168
|
+
readonly skewProtection: pulumi.Output<string | undefined>;
|
|
127
169
|
/**
|
|
128
170
|
* The team ID to add the project to. Required when configuring a team resource if a default team has not been set in the provider.
|
|
129
171
|
*/
|
|
@@ -149,14 +191,30 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
149
191
|
* Input properties used for looking up and filtering Project resources.
|
|
150
192
|
*/
|
|
151
193
|
export interface ProjectState {
|
|
194
|
+
/**
|
|
195
|
+
* Automatically assign custom production domains after each Production deployment via merge to the production branch or Vercel CLI deploy with --prod. Defaults to `true`
|
|
196
|
+
*/
|
|
197
|
+
autoAssignCustomDomains?: pulumi.Input<boolean>;
|
|
198
|
+
/**
|
|
199
|
+
* 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
|
|
200
|
+
*/
|
|
201
|
+
automaticallyExposeSystemEnvironmentVariables?: pulumi.Input<boolean>;
|
|
152
202
|
/**
|
|
153
203
|
* The build command for this project. If omitted, this value will be automatically detected.
|
|
154
204
|
*/
|
|
155
205
|
buildCommand?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
|
|
208
|
+
*/
|
|
209
|
+
customerSuccessCodeVisibility?: pulumi.Input<boolean>;
|
|
156
210
|
/**
|
|
157
211
|
* The dev command for this project. If omitted, this value will be automatically detected.
|
|
158
212
|
*/
|
|
159
213
|
devCommand?: pulumi.Input<string>;
|
|
214
|
+
/**
|
|
215
|
+
* If no index file is present within a directory, the directory contents will be displayed.
|
|
216
|
+
*/
|
|
217
|
+
directoryListing?: pulumi.Input<boolean>;
|
|
160
218
|
/**
|
|
161
219
|
* A set of Environment Variables that should be configured for the project.
|
|
162
220
|
*/
|
|
@@ -165,6 +223,22 @@ export interface ProjectState {
|
|
|
165
223
|
* The framework that is being used for this project. If omitted, no framework is selected.
|
|
166
224
|
*/
|
|
167
225
|
framework?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* 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.
|
|
228
|
+
*/
|
|
229
|
+
functionFailover?: pulumi.Input<boolean>;
|
|
230
|
+
/**
|
|
231
|
+
* Configuration for Git Comments.
|
|
232
|
+
*/
|
|
233
|
+
gitComments?: pulumi.Input<inputs.ProjectGitComments>;
|
|
234
|
+
/**
|
|
235
|
+
* 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. Defaults to `true`.
|
|
236
|
+
*/
|
|
237
|
+
gitForkProtection?: pulumi.Input<boolean>;
|
|
238
|
+
/**
|
|
239
|
+
* 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.
|
|
240
|
+
*/
|
|
241
|
+
gitLfs?: pulumi.Input<boolean>;
|
|
168
242
|
/**
|
|
169
243
|
* 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.
|
|
170
244
|
*/
|
|
@@ -189,6 +263,14 @@ export interface ProjectState {
|
|
|
189
263
|
* Ensures visitors of your Preview Deployments must enter a password in order to gain access.
|
|
190
264
|
*/
|
|
191
265
|
passwordProtection?: pulumi.Input<inputs.ProjectPasswordProtection>;
|
|
266
|
+
/**
|
|
267
|
+
* Whether to enable comments on your Preview Deployments. If omitted, comments are controlled at the team level (default behaviour).
|
|
268
|
+
*/
|
|
269
|
+
previewComments?: pulumi.Input<boolean>;
|
|
270
|
+
/**
|
|
271
|
+
* If enabled, builds for the Production environment will be prioritized over Preview environments.
|
|
272
|
+
*/
|
|
273
|
+
prioritiseProductionBuilds?: pulumi.Input<boolean>;
|
|
192
274
|
/**
|
|
193
275
|
* Allow 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` with a value of the `passwordProtectionForAutomationSecret` field.
|
|
194
276
|
*/
|
|
@@ -209,6 +291,10 @@ export interface ProjectState {
|
|
|
209
291
|
* 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.
|
|
210
292
|
*/
|
|
211
293
|
serverlessFunctionRegion?: pulumi.Input<string>;
|
|
294
|
+
/**
|
|
295
|
+
* Ensures that outdated clients always fetch the correct version for a given deployment. This value defines how long Vercel keeps Skew Protection active.
|
|
296
|
+
*/
|
|
297
|
+
skewProtection?: pulumi.Input<string>;
|
|
212
298
|
/**
|
|
213
299
|
* The team ID to add the project to. Required when configuring a team resource if a default team has not been set in the provider.
|
|
214
300
|
*/
|
|
@@ -226,14 +312,30 @@ export interface ProjectState {
|
|
|
226
312
|
* The set of arguments for constructing a Project resource.
|
|
227
313
|
*/
|
|
228
314
|
export interface ProjectArgs {
|
|
315
|
+
/**
|
|
316
|
+
* Automatically assign custom production domains after each Production deployment via merge to the production branch or Vercel CLI deploy with --prod. Defaults to `true`
|
|
317
|
+
*/
|
|
318
|
+
autoAssignCustomDomains?: pulumi.Input<boolean>;
|
|
319
|
+
/**
|
|
320
|
+
* 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
|
|
321
|
+
*/
|
|
322
|
+
automaticallyExposeSystemEnvironmentVariables?: pulumi.Input<boolean>;
|
|
229
323
|
/**
|
|
230
324
|
* The build command for this project. If omitted, this value will be automatically detected.
|
|
231
325
|
*/
|
|
232
326
|
buildCommand?: pulumi.Input<string>;
|
|
327
|
+
/**
|
|
328
|
+
* Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
|
|
329
|
+
*/
|
|
330
|
+
customerSuccessCodeVisibility?: pulumi.Input<boolean>;
|
|
233
331
|
/**
|
|
234
332
|
* The dev command for this project. If omitted, this value will be automatically detected.
|
|
235
333
|
*/
|
|
236
334
|
devCommand?: pulumi.Input<string>;
|
|
335
|
+
/**
|
|
336
|
+
* If no index file is present within a directory, the directory contents will be displayed.
|
|
337
|
+
*/
|
|
338
|
+
directoryListing?: pulumi.Input<boolean>;
|
|
237
339
|
/**
|
|
238
340
|
* A set of Environment Variables that should be configured for the project.
|
|
239
341
|
*/
|
|
@@ -242,6 +344,22 @@ export interface ProjectArgs {
|
|
|
242
344
|
* The framework that is being used for this project. If omitted, no framework is selected.
|
|
243
345
|
*/
|
|
244
346
|
framework?: pulumi.Input<string>;
|
|
347
|
+
/**
|
|
348
|
+
* 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.
|
|
349
|
+
*/
|
|
350
|
+
functionFailover?: pulumi.Input<boolean>;
|
|
351
|
+
/**
|
|
352
|
+
* Configuration for Git Comments.
|
|
353
|
+
*/
|
|
354
|
+
gitComments?: pulumi.Input<inputs.ProjectGitComments>;
|
|
355
|
+
/**
|
|
356
|
+
* 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. Defaults to `true`.
|
|
357
|
+
*/
|
|
358
|
+
gitForkProtection?: pulumi.Input<boolean>;
|
|
359
|
+
/**
|
|
360
|
+
* 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.
|
|
361
|
+
*/
|
|
362
|
+
gitLfs?: pulumi.Input<boolean>;
|
|
245
363
|
/**
|
|
246
364
|
* 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.
|
|
247
365
|
*/
|
|
@@ -266,6 +384,14 @@ export interface ProjectArgs {
|
|
|
266
384
|
* Ensures visitors of your Preview Deployments must enter a password in order to gain access.
|
|
267
385
|
*/
|
|
268
386
|
passwordProtection?: pulumi.Input<inputs.ProjectPasswordProtection>;
|
|
387
|
+
/**
|
|
388
|
+
* Whether to enable comments on your Preview Deployments. If omitted, comments are controlled at the team level (default behaviour).
|
|
389
|
+
*/
|
|
390
|
+
previewComments?: pulumi.Input<boolean>;
|
|
391
|
+
/**
|
|
392
|
+
* If enabled, builds for the Production environment will be prioritized over Preview environments.
|
|
393
|
+
*/
|
|
394
|
+
prioritiseProductionBuilds?: pulumi.Input<boolean>;
|
|
269
395
|
/**
|
|
270
396
|
* Allow 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` with a value of the `passwordProtectionForAutomationSecret` field.
|
|
271
397
|
*/
|
|
@@ -282,6 +408,10 @@ export interface ProjectArgs {
|
|
|
282
408
|
* 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.
|
|
283
409
|
*/
|
|
284
410
|
serverlessFunctionRegion?: pulumi.Input<string>;
|
|
411
|
+
/**
|
|
412
|
+
* Ensures that outdated clients always fetch the correct version for a given deployment. This value defines how long Vercel keeps Skew Protection active.
|
|
413
|
+
*/
|
|
414
|
+
skewProtection?: pulumi.Input<string>;
|
|
285
415
|
/**
|
|
286
416
|
* The team ID to add the project to. Required when configuring a team resource if a default team has not been set in the provider.
|
|
287
417
|
*/
|
package/project.js
CHANGED
|
@@ -8,7 +8,6 @@ const utilities = require("./utilities");
|
|
|
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 "@pulumiverse/vercel";
|
|
@@ -28,7 +27,6 @@ const utilities = require("./utilities");
|
|
|
28
27
|
* // terraform, or via the vercel CLI.
|
|
29
28
|
* const example = new vercel.Project("example", {framework: "nextjs"});
|
|
30
29
|
* ```
|
|
31
|
-
* <!--End PulumiCodeChooser -->
|
|
32
30
|
*
|
|
33
31
|
* ## Import
|
|
34
32
|
*
|
|
@@ -80,41 +78,63 @@ class Project extends pulumi.CustomResource {
|
|
|
80
78
|
opts = opts || {};
|
|
81
79
|
if (opts.id) {
|
|
82
80
|
const state = argsOrState;
|
|
81
|
+
resourceInputs["autoAssignCustomDomains"] = state ? state.autoAssignCustomDomains : undefined;
|
|
82
|
+
resourceInputs["automaticallyExposeSystemEnvironmentVariables"] = state ? state.automaticallyExposeSystemEnvironmentVariables : undefined;
|
|
83
83
|
resourceInputs["buildCommand"] = state ? state.buildCommand : undefined;
|
|
84
|
+
resourceInputs["customerSuccessCodeVisibility"] = state ? state.customerSuccessCodeVisibility : undefined;
|
|
84
85
|
resourceInputs["devCommand"] = state ? state.devCommand : undefined;
|
|
86
|
+
resourceInputs["directoryListing"] = state ? state.directoryListing : undefined;
|
|
85
87
|
resourceInputs["environments"] = state ? state.environments : undefined;
|
|
86
88
|
resourceInputs["framework"] = state ? state.framework : undefined;
|
|
89
|
+
resourceInputs["functionFailover"] = state ? state.functionFailover : undefined;
|
|
90
|
+
resourceInputs["gitComments"] = state ? state.gitComments : undefined;
|
|
91
|
+
resourceInputs["gitForkProtection"] = state ? state.gitForkProtection : undefined;
|
|
92
|
+
resourceInputs["gitLfs"] = state ? state.gitLfs : undefined;
|
|
87
93
|
resourceInputs["gitRepository"] = state ? state.gitRepository : undefined;
|
|
88
94
|
resourceInputs["ignoreCommand"] = state ? state.ignoreCommand : undefined;
|
|
89
95
|
resourceInputs["installCommand"] = state ? state.installCommand : undefined;
|
|
90
96
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
91
97
|
resourceInputs["outputDirectory"] = state ? state.outputDirectory : undefined;
|
|
92
98
|
resourceInputs["passwordProtection"] = state ? state.passwordProtection : undefined;
|
|
99
|
+
resourceInputs["previewComments"] = state ? state.previewComments : undefined;
|
|
100
|
+
resourceInputs["prioritiseProductionBuilds"] = state ? state.prioritiseProductionBuilds : undefined;
|
|
93
101
|
resourceInputs["protectionBypassForAutomation"] = state ? state.protectionBypassForAutomation : undefined;
|
|
94
102
|
resourceInputs["protectionBypassForAutomationSecret"] = state ? state.protectionBypassForAutomationSecret : undefined;
|
|
95
103
|
resourceInputs["publicSource"] = state ? state.publicSource : undefined;
|
|
96
104
|
resourceInputs["rootDirectory"] = state ? state.rootDirectory : undefined;
|
|
97
105
|
resourceInputs["serverlessFunctionRegion"] = state ? state.serverlessFunctionRegion : undefined;
|
|
106
|
+
resourceInputs["skewProtection"] = state ? state.skewProtection : undefined;
|
|
98
107
|
resourceInputs["teamId"] = state ? state.teamId : undefined;
|
|
99
108
|
resourceInputs["trustedIps"] = state ? state.trustedIps : undefined;
|
|
100
109
|
resourceInputs["vercelAuthentication"] = state ? state.vercelAuthentication : undefined;
|
|
101
110
|
}
|
|
102
111
|
else {
|
|
103
112
|
const args = argsOrState;
|
|
113
|
+
resourceInputs["autoAssignCustomDomains"] = args ? args.autoAssignCustomDomains : undefined;
|
|
114
|
+
resourceInputs["automaticallyExposeSystemEnvironmentVariables"] = args ? args.automaticallyExposeSystemEnvironmentVariables : undefined;
|
|
104
115
|
resourceInputs["buildCommand"] = args ? args.buildCommand : undefined;
|
|
116
|
+
resourceInputs["customerSuccessCodeVisibility"] = args ? args.customerSuccessCodeVisibility : undefined;
|
|
105
117
|
resourceInputs["devCommand"] = args ? args.devCommand : undefined;
|
|
118
|
+
resourceInputs["directoryListing"] = args ? args.directoryListing : undefined;
|
|
106
119
|
resourceInputs["environments"] = args ? args.environments : undefined;
|
|
107
120
|
resourceInputs["framework"] = args ? args.framework : undefined;
|
|
121
|
+
resourceInputs["functionFailover"] = args ? args.functionFailover : undefined;
|
|
122
|
+
resourceInputs["gitComments"] = args ? args.gitComments : undefined;
|
|
123
|
+
resourceInputs["gitForkProtection"] = args ? args.gitForkProtection : undefined;
|
|
124
|
+
resourceInputs["gitLfs"] = args ? args.gitLfs : undefined;
|
|
108
125
|
resourceInputs["gitRepository"] = args ? args.gitRepository : undefined;
|
|
109
126
|
resourceInputs["ignoreCommand"] = args ? args.ignoreCommand : undefined;
|
|
110
127
|
resourceInputs["installCommand"] = args ? args.installCommand : undefined;
|
|
111
128
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
112
129
|
resourceInputs["outputDirectory"] = args ? args.outputDirectory : undefined;
|
|
113
130
|
resourceInputs["passwordProtection"] = args ? args.passwordProtection : undefined;
|
|
131
|
+
resourceInputs["previewComments"] = args ? args.previewComments : undefined;
|
|
132
|
+
resourceInputs["prioritiseProductionBuilds"] = args ? args.prioritiseProductionBuilds : undefined;
|
|
114
133
|
resourceInputs["protectionBypassForAutomation"] = args ? args.protectionBypassForAutomation : undefined;
|
|
115
134
|
resourceInputs["publicSource"] = args ? args.publicSource : undefined;
|
|
116
135
|
resourceInputs["rootDirectory"] = args ? args.rootDirectory : undefined;
|
|
117
136
|
resourceInputs["serverlessFunctionRegion"] = args ? args.serverlessFunctionRegion : undefined;
|
|
137
|
+
resourceInputs["skewProtection"] = args ? args.skewProtection : undefined;
|
|
118
138
|
resourceInputs["teamId"] = args ? args.teamId : undefined;
|
|
119
139
|
resourceInputs["trustedIps"] = args ? args.trustedIps : undefined;
|
|
120
140
|
resourceInputs["vercelAuthentication"] = args ? args.vercelAuthentication : undefined;
|
package/project.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.js","sourceRoot":"","sources":["../project.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"project.js","sourceRoot":"","sources":["../project.ts"],"names":[],"mappings":"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"}
|
package/projectDomain.d.ts
CHANGED
|
@@ -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 "@pulumiverse/vercel";
|
|
@@ -29,7 +28,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
29
28
|
* redirectStatusCode: 307,
|
|
30
29
|
* });
|
|
31
30
|
* ```
|
|
32
|
-
* <!--End PulumiCodeChooser -->
|
|
33
31
|
*
|
|
34
32
|
* ## Import
|
|
35
33
|
*
|
package/projectDomain.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 "@pulumiverse/vercel";
|
|
@@ -35,7 +34,6 @@ const utilities = require("./utilities");
|
|
|
35
34
|
* redirectStatusCode: 307,
|
|
36
35
|
* });
|
|
37
36
|
* ```
|
|
38
|
-
* <!--End PulumiCodeChooser -->
|
|
39
37
|
*
|
|
40
38
|
* ## Import
|
|
41
39
|
*
|
package/projectDomain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projectDomain.js","sourceRoot":"","sources":["../projectDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"projectDomain.js","sourceRoot":"","sources":["../projectDomain.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* ## Example Usage
|
|
4
4
|
*
|
|
5
|
-
* <!--Start PulumiCodeChooser -->
|
|
6
5
|
* ```typescript
|
|
7
6
|
* import * as pulumi from "@pulumi/pulumi";
|
|
8
7
|
* import * as vercel from "@pulumiverse/vercel";
|
|
@@ -38,7 +37,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
38
37
|
* sensitive: true,
|
|
39
38
|
* });
|
|
40
39
|
* ```
|
|
41
|
-
* <!--End PulumiCodeChooser -->
|
|
42
40
|
*
|
|
43
41
|
* ## Import
|
|
44
42
|
*
|
|
@@ -48,7 +46,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
48
46
|
*
|
|
49
47
|
* - project_id can be found in the project `settings` tab in the Vercel UI.
|
|
50
48
|
*
|
|
51
|
-
* - environment variable id
|
|
49
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page,
|
|
50
|
+
*
|
|
51
|
+
* or can be queried from Vercel API directly (https://vercel.com/docs/rest-api/endpoints/projects#retrieve-the-environment-variables-of-a-project-by-id-or-name)
|
|
52
52
|
*
|
|
53
53
|
* #
|
|
54
54
|
*
|
|
@@ -66,7 +66,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
66
66
|
*
|
|
67
67
|
* - project_id can be found in the project `settings` tab in the Vercel UI.
|
|
68
68
|
*
|
|
69
|
-
* - environment variable id
|
|
69
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page,
|
|
70
|
+
*
|
|
71
|
+
* or can be queried from Vercel API directly (https://vercel.com/docs/rest-api/endpoints/projects#retrieve-the-environment-variables-of-a-project-by-id-or-name)
|
|
70
72
|
*
|
|
71
73
|
* #
|
|
72
74
|
*
|
|
@@ -8,7 +8,6 @@ const utilities = require("./utilities");
|
|
|
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 "@pulumiverse/vercel";
|
|
@@ -44,7 +43,6 @@ const utilities = require("./utilities");
|
|
|
44
43
|
* sensitive: true,
|
|
45
44
|
* });
|
|
46
45
|
* ```
|
|
47
|
-
* <!--End PulumiCodeChooser -->
|
|
48
46
|
*
|
|
49
47
|
* ## Import
|
|
50
48
|
*
|
|
@@ -54,7 +52,9 @@ const utilities = require("./utilities");
|
|
|
54
52
|
*
|
|
55
53
|
* - project_id can be found in the project `settings` tab in the Vercel UI.
|
|
56
54
|
*
|
|
57
|
-
* - environment variable id
|
|
55
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page,
|
|
56
|
+
*
|
|
57
|
+
* or can be queried from Vercel API directly (https://vercel.com/docs/rest-api/endpoints/projects#retrieve-the-environment-variables-of-a-project-by-id-or-name)
|
|
58
58
|
*
|
|
59
59
|
* #
|
|
60
60
|
*
|
|
@@ -72,7 +72,9 @@ const utilities = require("./utilities");
|
|
|
72
72
|
*
|
|
73
73
|
* - project_id can be found in the project `settings` tab in the Vercel UI.
|
|
74
74
|
*
|
|
75
|
-
* - environment variable id
|
|
75
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page,
|
|
76
|
+
*
|
|
77
|
+
* or can be queried from Vercel API directly (https://vercel.com/docs/rest-api/endpoints/projects#retrieve-the-environment-variables-of-a-project-by-id-or-name)
|
|
76
78
|
*
|
|
77
79
|
* #
|
|
78
80
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projectEnvironmentVariable.js","sourceRoot":"","sources":["../projectEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"projectEnvironmentVariable.js","sourceRoot":"","sources":["../projectEnvironmentVariable.ts"],"names":[],"mappings":"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"}
|
|
@@ -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 "@pulumiverse/vercel";
|
|
@@ -26,7 +25,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
26
25
|
* projectIds: [exampleProject.id],
|
|
27
26
|
* });
|
|
28
27
|
* ```
|
|
29
|
-
* <!--End PulumiCodeChooser -->
|
|
30
28
|
*
|
|
31
29
|
* ## Import
|
|
32
30
|
*
|
|
@@ -34,7 +32,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
34
32
|
*
|
|
35
33
|
* - team_id can be found in the team `settings` tab in the Vercel UI.
|
|
36
34
|
*
|
|
37
|
-
* - environment variable id
|
|
35
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page.
|
|
38
36
|
*
|
|
39
37
|
* #
|
|
40
38
|
*
|
|
@@ -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 "@pulumiverse/vercel";
|
|
@@ -32,7 +31,6 @@ const utilities = require("./utilities");
|
|
|
32
31
|
* projectIds: [exampleProject.id],
|
|
33
32
|
* });
|
|
34
33
|
* ```
|
|
35
|
-
* <!--End PulumiCodeChooser -->
|
|
36
34
|
*
|
|
37
35
|
* ## Import
|
|
38
36
|
*
|
|
@@ -40,7 +38,7 @@ const utilities = require("./utilities");
|
|
|
40
38
|
*
|
|
41
39
|
* - team_id can be found in the team `settings` tab in the Vercel UI.
|
|
42
40
|
*
|
|
43
|
-
* - environment variable id
|
|
41
|
+
* - environment variable id can be taken from the network tab inside developer tools, while you are on the project page.
|
|
44
42
|
*
|
|
45
43
|
* #
|
|
46
44
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sharedEnvironmentVariable.js","sourceRoot":"","sources":["../sharedEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"sharedEnvironmentVariable.js","sourceRoot":"","sources":["../sharedEnvironmentVariable.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -66,7 +66,21 @@ export interface ProjectEnvironment {
|
|
|
66
66
|
*/
|
|
67
67
|
value: pulumi.Input<string>;
|
|
68
68
|
}
|
|
69
|
+
export interface ProjectGitComments {
|
|
70
|
+
/**
|
|
71
|
+
* Whether Commit comments are enabled
|
|
72
|
+
*/
|
|
73
|
+
onCommit: pulumi.Input<boolean>;
|
|
74
|
+
/**
|
|
75
|
+
* Whether Pull Request comments are enabled
|
|
76
|
+
*/
|
|
77
|
+
onPullRequest: pulumi.Input<boolean>;
|
|
78
|
+
}
|
|
69
79
|
export interface ProjectGitRepository {
|
|
80
|
+
/**
|
|
81
|
+
* Deploy hooks are unique URLs that allow you to trigger a deployment of a given branch. See https://vercel.com/docs/deployments/deploy-hooks for full information.
|
|
82
|
+
*/
|
|
83
|
+
deployHooks?: pulumi.Input<pulumi.Input<inputs.ProjectGitRepositoryDeployHook>[]>;
|
|
70
84
|
/**
|
|
71
85
|
* By default, every commit pushed to the main branch will trigger a Production Deployment instead of the usual Preview Deployment. You can switch to a different branch here.
|
|
72
86
|
*/
|
|
@@ -80,6 +94,24 @@ export interface ProjectGitRepository {
|
|
|
80
94
|
*/
|
|
81
95
|
type: pulumi.Input<string>;
|
|
82
96
|
}
|
|
97
|
+
export interface ProjectGitRepositoryDeployHook {
|
|
98
|
+
/**
|
|
99
|
+
* The ID of the deploy hook.
|
|
100
|
+
*/
|
|
101
|
+
id?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* The name of the deploy hook.
|
|
104
|
+
*/
|
|
105
|
+
name: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The branch or commit hash that should be deployed.
|
|
108
|
+
*/
|
|
109
|
+
ref: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* A URL that, when a POST request is made to, will trigger a new deployment.
|
|
112
|
+
*/
|
|
113
|
+
url?: pulumi.Input<string>;
|
|
114
|
+
}
|
|
83
115
|
export interface ProjectPasswordProtection {
|
|
84
116
|
/**
|
|
85
117
|
* The deployment environment to protect. Must be one of `standardProtection`, `allDeployments`, or `onlyPreviewDeployments`.
|
|
@@ -110,7 +142,7 @@ export interface ProjectTrustedIpsAddress {
|
|
|
110
142
|
*/
|
|
111
143
|
note?: pulumi.Input<string>;
|
|
112
144
|
/**
|
|
113
|
-
* The
|
|
145
|
+
* The address or CIDR range that can access deployments.
|
|
114
146
|
*/
|
|
115
147
|
value: pulumi.Input<string>;
|
|
116
148
|
}
|