Skip to main content
Microsoft Teams resources enable you to manage team creation, channel configuration, and Teams settings.

Resource Categories

Teams

Create and manage teams

Channels

Manage team channels

Settings

Configure Teams policies

Quick Start

Microsoft Teams are built on top of Microsoft 365 Groups. Creating a team requires a group:
# Create M365 group
resource "microsoft365_graph_beta_groups_group" "team_group" {
  display_name     = "Project Alpha Team"
  mail_nickname    = "project-alpha"
  description      = "Project Alpha collaboration space"
  mail_enabled     = true
  security_enabled = false
  group_types      = ["Unified"]
}

# Note: Team creation resources would be used here
# Check the Teams resources page for team-specific configuration

Teams Policies

Configure organization-wide Teams settings:
# Teams calling policy
resource "microsoft365_powershell_microsoft_teams_teams_calling_policy" "default" {
  identity = "Global"
  # Policy settings
}

# Teams meeting policy
resource "microsoft365_powershell_microsoft_teams_teams_meeting_policy" "default" {
  identity = "Global"
  # Policy settings
}

Next Steps

Teams

Create teams

Channels

Add channels

Settings

Configure policies

Build docs developers (and LLMs) love