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 "dynamo_table_identity" {
  description = "Name of pp_identity dynamodb table"
  default     = "qa_pp_identity"
}

variable "dynamo_table_identity_refresh" {
  description = "Name of pp_identity dynamodb table"
  default     = "pp_identity_refresh"
}
