variable "environment" {
  type        = string
  description = "Available values:  dev, qa, prod"
  default     = "dev"
}

variable "service_name" {
  type        = string
  description = "The name of the service"
  default     = "service-test"
}

variable "application_family" {
  type        = string
  description = "Application family to which this service belongs"
}

variable "platform" {
  type        = string
  description = "The platform for the project. See https://registry.terraform.io/providers/jianyuan/sentry/latest/docs/resources/project#platform-3 for valid values"
  default     = "python"
}

variable "organization" {
  type        = string
  description = "The name of the Sentry organization"
  default     = "the-orchard"
}

variable "teams" {
  type        = set(string)
  description = "Team assignment to the sentry project"
  default     = ["dev"]
}
