variable "aws_region" {
  default = "us-east-1"
}

variable "environment" {
  default = "prod"
}

variable "github-organization" {
  type        = string
  description = "Github organization"
  default     = "theorchard"
}

variable "default_code_owner" {
  description = "Default code owner team for the repository"
  type        = string
  default     = "data-platform"
}

variable "application_family" {
  description = "Application family"
  type        = string
  default     = "data-platform"
}
