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

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

variable "application_family" {
  default = "content-review"
}

variable "bucket_name" {
  type    = string
  default = "lambda-content-integration-tests"
}

variable "auto_approve_s3_folder" {
  type    = string
  default = "auto-approve-sfn"
}

variable "service_name" {
  type    = string
  default = "lambda-content-integration-tests"
}

variable "team_name" {
  type    = string
  default = "content-review-management"
}

variable "notification_endpoints" {
  description = "Endpoints for content review notification and alerting"
  type        = string
  default     = "@slack-content-review-team"
}

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