Skip to content

Instantly share code, notes, and snippets.

@ShubhanjanMedhi-dev
Created May 6, 2024 11:10
Show Gist options
  • Save ShubhanjanMedhi-dev/3ec10d2f0c3a954744d47654daee0660 to your computer and use it in GitHub Desktop.
Save ShubhanjanMedhi-dev/3ec10d2f0c3a954744d47654daee0660 to your computer and use it in GitHub Desktop.
data "squadcast_team" "example_team" {
name = "example team name"
}
resource "squadcast_team_role" "example_team_role_1" {
name = "Test Role"
team_id = data.squadcast_team.example_team.id
abilities = ["create-escalation-policies", "read-escalation-policies", "update-escalation-policies"]
}
resource "squadcast_team_role" "example_team_role_2" {
name = "Sample Role"
team_id = data.squadcast_team.example_team.id
abilities = ["create-escalation-policies", "read-escalation-policies", "update-escalation-policies"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment