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

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

variable "aws_region" {
  description = "The AWS region to create the logs bucket in"
  default     = "us-east-1"
}

variable "environment" {
  description = "The environment to create the logs bucket for"
  default     = "qa"
}

# Account group is account ID for disaster recovery
variable "account_group" {
  description = "The name of the account group that the account belongs to"
  default     = "supply-chain"
}
