variable "aws_region" {
  description = "Which AWS region to place the bucket in"
  type        = string
  default     = "us-east-1"
}

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

variable "bucket_name" {
  description = "The name of the bucket."
  type        = string
  default     = "orcd-nct-loops-drop"
}

variable "application_family" {
  description = "The application family."
  type        = string
  default     = "integrations"
}
