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

variable "github_organization" {
  description = "GitHub organization slug"
  type        = string
  default     = "theorchard"
}

variable "service_name" {
  description = "GitHub repository name"
  type        = string
  default     = "revenue-file-ingestion"
}

variable "application_family" {
  description = "The name of this group of applications"
  type        = string
  default     = "accounting"
}

variable "default_code_owner" {
  description = "Default code owner for the repository"
  type        = string
  default     = "royalties"
}
