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"
}

variable "account_group" {
  description = "The name of the account group that the account belongs to"
  default     = "test-automation"
}

variable "application_family" {
  default = "security-tools"
}

variable "aggregated_s3_logs_bucket" {
  default = "shared-orcd-s3-logs"
}
