Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 875 Bytes

File metadata and controls

39 lines (29 loc) · 875 Bytes
page_title flashduty_team Resource - flashduty
subcategory
description Manages a Flashduty team.

flashduty_team (Resource)

Manages a Flashduty team.

Example Usage

# Create a basic team
resource "flashduty_team" "sre" {
  team_name   = "SRE Team"
  description = "Site Reliability Engineering team"
}

# Create a team for a specific service
resource "flashduty_team" "payment_service" {
  team_name   = "Payment Service Team"
  description = "Team responsible for payment service operations"
}

Schema

Required

  • description (String) The description of the team.
  • team_name (String) The name of the team. Must be unique within the account.

Read-Only

  • id (String) The unique identifier of the team.