terraform-provider-cloudamqp icon indicating copy to clipboard operation
terraform-provider-cloudamqp copied to clipboard

Feature Request: Add resouces for teams and members

Open Skeen opened this issue 2 years ago • 5 comments

Hi,

We would like to manage users and teams using Terraform to automatically assign permissions and accesses to users according to our IAM system.

I imagine a resource alike:

resource "cloudamqp_team" "product_team" {
  name               = "Product Team"
  notification_email = "[email protected]"
  gdpr_email         = "[email protected]"
  enforce_two_factor = true

  # various saml options
}

and:

resource "cloudamqp_team_member" "developer" {
  team  = cloudamqp_team.product_team.id

  email = "[email protected]"
  role  = "member"
  tags  = ["product1"]
}

Skeen avatar Jun 22 '22 11:06 Skeen