You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[projects] Support setting enableAffectedProjectsDeployments (#272)
* add field to structs
* change to optional
* remove from data source test
* add to schema
* task docs
* add tests
* fix project name
* computed -> optional
* remove use state modifier
* null handling
* uncoerce?
* omitEmpty?
* remove unnecessary fields
Copy file name to clipboardexpand all lines: docs/data-sources/project.md
+1
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ data "vercel_project" "example" {
43
43
-`customer_success_code_visibility` (Boolean) Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
44
44
-`dev_command` (String) The dev command for this project. If omitted, this value will be automatically detected.
45
45
-`directory_listing` (Boolean) If no index file is present within a directory, the directory contents will be displayed.
46
+
-`enable_affected_projects_deployments` (Boolean) When enabled, Vercel will automatically deploy all projects that are affected by a change to this project.
46
47
-`environment` (Attributes Set) A list of environment variables that should be configured for the project. (see [below for nested schema](#nestedatt--environment))
47
48
-`framework` (String) The framework that is being used for this project. If omitted, no framework is selected.
48
49
-`function_failover` (Boolean) 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.
-`customer_success_code_visibility` (Boolean) Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
62
62
-`dev_command` (String) The dev command for this project. If omitted, this value will be automatically detected.
63
63
-`directory_listing` (Boolean) If no index file is present within a directory, the directory contents will be displayed.
64
+
-`enable_affected_projects_deployments` (Boolean) When enabled, Vercel will automatically deploy all projects that are affected by a change to this project.
64
65
-`environment` (Attributes Set) A set of Environment Variables that should be configured for the project. (see [below for nested schema](#nestedatt--environment))
65
66
-`framework` (String) The framework that is being used for this project. If omitted, no framework is selected.
66
67
-`function_failover` (Boolean) 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.
Description: "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",
0 commit comments