这是indexloc提供的服务,不要输入任何密码
Skip to content

Support turbo builds #348

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ resource "vercel_project" "example" {
- `auto_assign_custom_domains` (Boolean) Automatically assign custom production domains after each Production deployment via merge to the production branch or Vercel CLI deploy with --prod. Defaults to `true`
- `automatically_expose_system_environment_variables` (Boolean) 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
- `build_command` (String) The build command for this project. If omitted, this value will be automatically detected.
- `build_machine_type` (String) The build machine type to use for this project. Must be one of "enhanced".
- `build_machine_type` (String) The build machine type to use for this project. Must be one of "enhanced" or "turbo".
- `customer_success_code_visibility` (Boolean) Allows Vercel Customer Support to inspect all Deployments' source code in this project to assist with debugging.
- `dev_command` (String) The dev command for this project. If omitted, this value will be automatically detected.
- `directory_listing` (Boolean) If no index file is present within a directory, the directory contents will be displayed.
Expand Down
4 changes: 2 additions & 2 deletions vercel/resource_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -584,11 +584,11 @@ At this time you cannot use a Vercel Project resource with in-line ` + "`environ
PlanModifiers: []planmodifier.Bool{boolplanmodifier.UseStateForUnknown()},
},
"build_machine_type": schema.StringAttribute{
Description: "The build machine type to use for this project. Must be one of \"enhanced\".",
Description: "The build machine type to use for this project. Must be one of \"enhanced\" or \"turbo\".",
Optional: true,
Computed: true,
Validators: []validator.String{
stringvalidator.OneOf("enhanced"),
stringvalidator.OneOf("enhanced", "turbo"),
},
},
},
Expand Down