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

Add some missing doc strings #242

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 1 commit into from
Dec 16, 2024
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
6 changes: 3 additions & 3 deletions docs/resources/team_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions vercel/resource_team_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()},
Expand Down Expand Up @@ -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()},
Expand All @@ -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()},
Expand Down
Loading