Skip to content

Instantly share code, notes, and snippets.

@ShubhanjanMedhi-dev
Last active May 6, 2024 11:18
Show Gist options
  • Save ShubhanjanMedhi-dev/61196a6d607cd330f936df3640197737 to your computer and use it in GitHub Desktop.
Save ShubhanjanMedhi-dev/61196a6d607cd330f936df3640197737 to your computer and use it in GitHub Desktop.
resource "squadcast_squad" "squad" {
name = "My squad"
team_id = data.squadcast_team.example_team.id
members {
user_id = data.squadcast_user.example_user.id
role = “owner”
}
members {
user_id = data.squadcast_user.example_user_2.id
role = “member”
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment