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

variable "service_name" {
  type    = string
  default = "datadog-software-catalog-diff-evaluator"
}

variable "application_family" {
  type    = string
  default = "devops"
}

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

variable "resource_explorer_view_arn" {
  type        = string
  description = "The ARN of the Resource Explorer view to grant access to."
  default     = "arn:aws:resource-explorer-2:us-east-1:970903126758:view/all-orchard-resources/eb8193f7-9c27-48d2-8b8b-1767e3e30298"
}

variable "secrets_manager_secret_names" {
  type = list(string)
  description = "List of Jira related secret names stored in Secrets Manager"
  default = [
    "JIRA_API_TOKEN", # linked email is software-catalog-i3ae4y59ql@serviceaccount.atlassian.com
  ]
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  default     = "@slack-devops-internal-alerts"
}

variable "team_name" {
  type        = string
  description = "Datadog team handle for the service owner."
  default     = "devops"
}
