diff --git a/docs/resources/project.md b/docs/resources/project.md index d300595f..1984bbd9 100644 --- a/docs/resources/project.md +++ b/docs/resources/project.md @@ -100,7 +100,7 @@ Required: Optional: - `git_branch` (String) The git branch of the Environment Variable. -- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. +- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy)) Read-Only: diff --git a/docs/resources/project_environment_variable.md b/docs/resources/project_environment_variable.md index 7cfc232c..65b546c3 100644 --- a/docs/resources/project_environment_variable.md +++ b/docs/resources/project_environment_variable.md @@ -76,7 +76,7 @@ resource "vercel_project_environment_variable" "example_sensitive" { ### Optional - `git_branch` (String) The git branch of the Environment Variable. -- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. +- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy)) - `team_id` (String) The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider. ### Read-Only diff --git a/docs/resources/shared_environment_variable.md b/docs/resources/shared_environment_variable.md index 2d1f4a8d..b3424a8e 100644 --- a/docs/resources/shared_environment_variable.md +++ b/docs/resources/shared_environment_variable.md @@ -52,7 +52,7 @@ resource "vercel_shared_environment_variable" "example" { ### Optional -- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. +- `sensitive` (Boolean) Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy)) - `team_id` (String) The ID of the Vercel team. Shared environment variables require a team. ### Read-Only diff --git a/vercel/resource_project.go b/vercel/resource_project.go index 570260f5..ab8347ed 100644 --- a/vercel/resource_project.go +++ b/vercel/resource_project.go @@ -144,7 +144,7 @@ At this time you cannot use a Vercel Project resource with in-line ` + "`environ Computed: true, }, "sensitive": schema.BoolAttribute{ - Description: "Whether the Environment Variable is sensitive or not.", + Description: "Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy))", Optional: true, Computed: true, }, diff --git a/vercel/resource_project_environment_variable.go b/vercel/resource_project_environment_variable.go index d02362f4..c1c21670 100644 --- a/vercel/resource_project_environment_variable.go +++ b/vercel/resource_project_environment_variable.go @@ -105,7 +105,7 @@ At this time you cannot use a Vercel Project resource with in-line ` + "`environ Computed: true, }, "sensitive": schema.BoolAttribute{ - Description: "Whether the Environment Variable is sensitive or not.", + Description: "Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy))", Optional: true, Computed: true, PlanModifiers: []planmodifier.Bool{boolplanmodifier.RequiresReplace()}, diff --git a/vercel/resource_shared_environment_variable.go b/vercel/resource_shared_environment_variable.go index 1606cb62..5e4f1e1e 100644 --- a/vercel/resource_shared_environment_variable.go +++ b/vercel/resource_shared_environment_variable.go @@ -100,7 +100,7 @@ For more detailed information, please see the [Vercel documentation](https://ver Computed: true, }, "sensitive": schema.BoolAttribute{ - Description: "Whether the Environment Variable is sensitive or not.", + Description: "Whether the Environment Variable is sensitive or not. (May be affected by a [team-wide environment variable policy](https://vercel.com/docs/projects/environment-variables/sensitive-environment-variables#environment-variables-policy))", Optional: true, Computed: true, PlanModifiers: []planmodifier.Bool{boolplanmodifier.RequiresReplace()},