variable "region" {
  type        = string
  description = "The AWS region"
  default     = "us-east-1"
}

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

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

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "devops"
}

variable "team_name" {
  type        = string
  description = "The name of the team"
  default     = "devops"
}

variable "auth0_tenants_list" {
  type        = list(string)
  description = "List of Auth0 tenants"
  default = [
    "dev-delphi",
    "dev-orchard",
    "prod-delphi",
    "prod-dna-apps",
    "prod-orch-youtube",
    "qa-orch-youtube",
    "qa-orchard",
    "sme-develop",
    "sme-dna",
    "sme-qa",
    "workstation",
  ]
}

variable "jira_cli_secrets" {
  type        = list(string)
  description = "List of secrets for Jira CLI lambda"
  default = [
    "JIRA_API_TOKEN"
  ]
}

variable "github_cli_secrets" {
  type        = list(string)
  description = "List of secrets for Github CLI lambda"
  default = [
    "GITHUB_TOKEN"
  ]
}

