Resources
upstash_team
Create and manage teams on Upstash.
resource "upstash_team" "exampleTeam" {
team_name = "TerraformTeam"
copy_cc = false
team_members = {
# Owner is the owner of the api_key.
"X@Y.Z": "owner",
"A@B.C": "dev",
"E@E.F": "finance",
}
}
Schema
Required
copy_cc
bool
requiredWhether Credit Card is copied
team_members
map(string)
requiredMembers of the team. (Owner must be specified, which is the owner of the api key.)
team_name
string
requiredName of the team
Read-Only
id
string
The ID of this resource.
team_id
string
Unique Cluster ID for created cluster
Was this page helpful?
resource "upstash_team" "exampleTeam" {
team_name = "TerraformTeam"
copy_cc = false
team_members = {
# Owner is the owner of the api_key.
"X@Y.Z": "owner",
"A@B.C": "dev",
"E@E.F": "finance",
}
}