variable "aws_region" {
  default     = "us-east-2"
  description = "Which AWS region to spin up the environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "backup"
}

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "service_name" {
  description = "Custom bucket name"
  default     = "s3-batch-operations"
}

variable "allowed_bucket_names" {
  description = "List of bucket names to allow"
  type        = list(string)
  default     = [
    "*-assets",
    "*-backup",
    "*-replica",
    "smashmouth",
    ]
}

variable "kms_key_ids" {
  description = "List of KMS key IDs"
  type        = list(string)
  default     = ["a73e41ca-2d60-48cd-bb4a-65451c36c823"]
}
