variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

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

variable "service_name" {
  default = "segmentation-input"
}

variable "application_family" {
  default = "audience-development"
}

variable "bucket_name" {
  default     = "segmentation-input-bucket"
  description = "bucket for storing project related analysis input files"
}
