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 "service_name" {
  default = "moneyhub-integration-test"
}

variable "application_family" {
  default = "accounting"
}

locals {
  tags = {
    terraformed        = true
    environment        = var.environment
    application_family = var.application_family
  }
}
