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

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

variable "domain_name" {
  description = "Name of domain"
  default     = "prodawal.com"
}

variable "real_domain_name" {
  description = "Name of domain"
  default     = "awal.com"
}

variable "service_name" {
  default = "awal"
}

variable "service_name_suffix" {
  default = "documents"
}

variable "application_family" {
  description = "The name of this group of applications."
  default     = "documents"
}

variable "cloudfront_logging_bucket" {
  description = "Bucket to use for cloudfront logging"
  default     = "prod-orcd-cloudfront-logs"
}
