Resources

upstash_team

Create and manage teams on Upstash.

example.tf
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_ccqueryboolrequired

Whether Credit Card is copied

team_membersquerymap(string)required

Members of the team. (Owner must be specified, which is the owner of the api key.)

team_namequerystringrequired

Name of the team

Read-Only

idstring

The ID of this resource.

team_idstring

Unique Cluster ID for created cluster

Loading search…