Skip to content

Instantly share code, notes, and snippets.

@ShubhanjanMedhi-dev
Last active May 7, 2024 05:42
Show Gist options
  • Save ShubhanjanMedhi-dev/99af999888adc5710349107fe24a8209 to your computer and use it in GitHub Desktop.
Save ShubhanjanMedhi-dev/99af999888adc5710349107fe24a8209 to your computer and use it in GitHub Desktop.
data "squadcast_team" "example_team" {
name = "example team name"
}
data "squadcast_user" "example_user" {
email = "example@squadcast.com"
}
resource "squadcast_team_member" "example_team_member" {
team_id = data.squadcast_team.example_team.id
user_id = data.squadcast_user.example_user.id
role_ids = [data.squadcast_team_role.example_team_role.id]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment