Skip to content

devops-workflow/terraform-pagerduty-teams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI

terraform-pagerduty-teams

Terraform module for managing PagerDuty teams.

This only creates and deletes the team. Not anything associated with the team.

Usage

module "teams" {
  source          = "devops-workflow/teams/pagerduty"
  version         = "0.0.1"
  pagerduty_token = "${var.pagerduty_token}"

  teams = [
    {
      name = "Team 1"
    },
    {
      name        = "Team 2"
      description = "Team Two"
    },
    {
      name = "Team 3"
    },
  ]
}