Organization is a Terraform module useful for creating multiple teams and projects in Sentry
Add the required configurations to your terraform config file and install module using command bellow:
terraform init
module "sentry" {
source = "cktf/organization/sentry"
slug = "myorg"
name = "MyOrg"
teams = {
backend = {
slug = "backend"
name = "Backend"
}
frontend = {
slug = "backend"
name = "Frontend"
}
}
projects = {
app1 = {
slug = "app1"
name = "App1"
teams = ["backend"]
}
app2 = {
slug = "app2"
name = "App2"
teams = ["backend", "frontend"]
platform = "django"
}
}
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
This project is licensed under the MIT.
Copyright (c) KoLiBer ([email protected])