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

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

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

variable "access_log_type" {
  description = "Type of access logs being configured"
  default     = "s3"
}

