> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vantage.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# vantage_team (Resource)

> Terraform resource reference for vantage_team (Resource). Auto-generated from the vantage-sh/terraform-provider-vantage repository.

<Note>
  This page is auto-generated based on the official [Terraform documentation](https://registry.terraform.io/providers/vantage-sh/vantage/latest/docs).
</Note>

## Overview

Use this resource with the [Vantage Terraform provider](/terraform). For installation and authentication, see the [Terraform provider quickstart](/terraform#quickstart). The schema below is generated directly from the provider source.

## Example Usage

```terraform theme={null}
resource "vantage_team" "demo_team" {
  name                    = "Demo Team"
  description             = "Demo Team Description"
  default_dashboard_token = "dshbrd_a2846903070824f4"
  user_emails             = ["support@vantage.sh"]
  workspace_tokens        = ["wrkspc_47c3254c790e9351"]
}
```

## Schema

### Required

* `name` (String) The name of the Team.

### Optional

* `default_dashboard_token` (String) The token of the dashboard to use as the default for the Team.
* `description` (String) The description of the Team.
* `role` (String) The role to assign to the provided Users. Defaults to 'editor' which has editor permissions.
* `user_emails` (List of String) The User emails to associate to the Team.
* `user_tokens` (List of String) The User tokens to associate to the Team.
* `workspace_tokens` (List of String) The Workspace tokens to associate to the Team.

### Read-Only

* `id` (String) The id of the team
* `token` (String) The token of the Team
