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

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

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

variable "service_name" {
  description = "Name of service"
  default     = "pdp-backfill"
}

variable "bucket_name" {
  type    = string
  default = "pdp-backfill"
}
