A [team](https://v2.developer.pagerduty.com/v2/page/api-reference#!/Teams/get_teams) is a collection of users and escalation policies that represent a group of people within an organization.
## Example Usage
```
resource "pagerduty_team" "example" {
name = "Engineering"
description = "All engineering"
}
```
## Argument Reference
The following arguments are supported:
*`name` - (Required) The name of the group.
*`description` - (Optional) A human-friendly description of the team.
If not set, a placeholder of "Managed by Terraform" will be set.