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     = "qa"
}

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

variable "service_name" {
  default = "insights"
}

variable "application_family" {
  default = "insights"
}

variable "brand" {
  default = "sme"
}

variable "dns_record_type" {
  default = "CNAME"
}

variable "dns_record_ttl" {
  default = 1
}

locals {
  waf_scope = "CLOUDFRONT"
}
