From a314823c8ce96314e8c422139554afefeadade03 Mon Sep 17 00:00:00 2001 From: Austin Bruch Date: Tue, 18 Jun 2024 12:31:40 -0400 Subject: [PATCH] docs: update `ref` description in resource deployment to fix reference to `files` the `ref` description incorrectly says that `ref` is required if `ref` is not specified, when really it means `files`. --- vercel/resource_deployment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel/resource_deployment.go b/vercel/resource_deployment.go index c6ceabfd..01c3a08c 100644 --- a/vercel/resource_deployment.go +++ b/vercel/resource_deployment.go @@ -132,7 +132,7 @@ terraform to your Deployment. }, }, "ref": schema.StringAttribute{ - Description: "The branch or commit hash that should be deployed. Note this will only work if the project is configured to use a Git repository. Required if `ref` is not set.", + Description: "The branch or commit hash that should be deployed. Note this will only work if the project is configured to use a Git repository. Required if `files` is not set.", Optional: true, PlanModifiers: []planmodifier.String{stringplanmodifier.RequiresReplace()}, },