diff --git a/docs/resources/team_config.md b/docs/resources/team_config.md index 959582f7..3e811834 100644 --- a/docs/resources/team_config.md +++ b/docs/resources/team_config.md @@ -46,15 +46,15 @@ resource "vercel_team_config" "example" { - `avatar` (Map of String) The `avatar` should be a the 'file' attribute from a vercel_file data source. - `description` (String) A description of the team. - `email_domain` (String) Hostname that'll be matched with emails on sign-up to automatically join the Team. -- `enable_preview_feedback` (String) -- `enable_production_feedback` (String) +- `enable_preview_feedback` (String) Enables the Vercel Toolbar on your preview deployments: one of on, off or default. +- `enable_production_feedback` (String) Enables the Vercel Toolbar on your production deployments: one of on, off or default. - `hide_ip_addresses` (Boolean) Indicates if ip addresses should be accessible in o11y tooling. - `hide_ip_addresses_in_log_drains` (Boolean) Indicates if ip addresses should be accessible in log drains. - `name` (String) The name of the team. - `preview_deployment_suffix` (String) The hostname that is used as the preview deployment suffix. - `remote_caching` (Attributes) Configuration for Remote Caching. (see [below for nested schema](#nestedatt--remote_caching)) - `saml` (Attributes) Configuration for SAML authentication. (see [below for nested schema](#nestedatt--saml)) -- `sensitive_environment_variable_policy` (String) +- `sensitive_environment_variable_policy` (String) Ensures that all environment variables created by members of this team will be created as Sensitive Environment Variables which can only be decrypted by Vercel's deployment system.: one of on, off or default. - `slug` (String) The slug of the team. Will be used in the URL of the team's dashboard. ### Read-Only diff --git a/vercel/resource_team_config.go b/vercel/resource_team_config.go index 0149b158..979feca6 100644 --- a/vercel/resource_team_config.go +++ b/vercel/resource_team_config.go @@ -104,6 +104,7 @@ func (r *teamConfigResource) Schema(_ context.Context, req resource.SchemaReques Description: "A description of the team.", }, "sensitive_environment_variable_policy": schema.StringAttribute{ + Description: "Ensures that all environment variables created by members of this team will be created as Sensitive Environment Variables which can only be decrypted by Vercel's deployment system.: one of on, off or default.", Optional: true, Computed: true, PlanModifiers: []planmodifier.String{stringplanmodifier.UseStateForUnknown()}, @@ -177,6 +178,7 @@ func (r *teamConfigResource) Schema(_ context.Context, req resource.SchemaReques }, }, "enable_preview_feedback": schema.StringAttribute{ + Description: "Enables the Vercel Toolbar on your preview deployments: one of on, off or default.", Optional: true, Computed: true, PlanModifiers: []planmodifier.String{stringplanmodifier.UseStateForUnknown()}, @@ -185,6 +187,7 @@ func (r *teamConfigResource) Schema(_ context.Context, req resource.SchemaReques }, }, "enable_production_feedback": schema.StringAttribute{ + Description: "Enables the Vercel Toolbar on your production deployments: one of on, off or default.", Optional: true, Computed: true, PlanModifiers: []planmodifier.String{stringplanmodifier.UseStateForUnknown()},