diff --git a/docs/data-sources/project.md b/docs/data-sources/project.md index 6b62b13e..43168039 100644 --- a/docs/data-sources/project.md +++ b/docs/data-sources/project.md @@ -58,6 +58,7 @@ output "project_id" { Read-Only: +- **git_branch** (String) The git branch of the environment variable. - **id** (String) The ID of the environment variable - **key** (String) The name of the environment variable. - **target** (Set of String) The environments that the environment variable should be present on. Valid targets are either `production`, `preview`, or `development`. diff --git a/vercel/data_source_project.go b/vercel/data_source_project.go index edd538d0..f9a2d6d0 100644 --- a/vercel/data_source_project.go +++ b/vercel/data_source_project.go @@ -78,6 +78,11 @@ For more detailed information, please see the [Vercel documentation](https://ver Type: types.StringType, Computed: true, }, + "git_branch": { + Description: "The git branch of the environment variable.", + Type: types.StringType, + Computed: true, + }, }, tfsdk.SetNestedAttributesOptions{}), }, "framework": {