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

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

variable "sns_topic" {
  default = "swf-feed-ingestion"
}

variable "application_family" {
  default = "data-platform"
}

variable "service_name" {
  default = "swf-feed-ingestion"
}

locals {
  emails = ["rroy@theorchard.com"]
}
