Skip to content

Instantly share code, notes, and snippets.

@ShubhanjanMedhi-dev
Created May 6, 2024 11:17
Show Gist options
  • Save ShubhanjanMedhi-dev/c90fb20d9c86d46c184a49105113a2a5 to your computer and use it in GitHub Desktop.
Save ShubhanjanMedhi-dev/c90fb20d9c86d46c184a49105113a2a5 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"
}
data "squadcast_user" "example_user_2" {
email = "example2@squadcast.com"
}
resource "squadcast_squad" "squad" {
name = "My squad"
team_id = data.squadcast_team.example_team.id
members {
user_id = data.squadcast_user.example_user.id
}
members {
user_id = data.squadcast_user.example_user_2.id
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment