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

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

variable "lambda_name" {
  type        = string
  description = "The name of the lambda, without the environment prefix"
  default     = "lambda-example" # Should match the value of https://github.com/theorchard/cookiecutter-python-lambda/blob/227eb6bab0cd0a2b3613e6173bf3137e9b86d919/lambda-%7B%7Bcookiecutter.repo_name%7D%7D/lambda/%7B%7Bcookiecutter.lambda_name%7D%7D/config.py#L5
}

variable "application_family" {
  type        = string
  description = "The name of the application family"
  default     = "app-family"
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for datadog notifications"
  default     = "@slack-squad-channel"
}
