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

variable "region" {
  default = "us-east-1"
}

variable "iam_policy_file_location" {
  default = "policies"
}

variable "lambda_name" {
  default = "upload-audit-logs-to-s3"
}

variable "SENTRY_DSN" {
  description = "Sentry DSN"
  default     = "https://4e24bbc188eb41c18570483bb6adbbe2:f48eadad1fbf42b0a65a5c2f8da3a6c9@sentry.io/1336328"
}

variable "application_family" {
  default = "security-tools"
}

variable "service_name" {
  default = "lambda-logging-upload-to-s3"
}

variable "datadog_notification_endpoints" {
  description = "DataDog notification endpoints"
  default     = "@slack-monitoring @slack-security-team"
}

variable "athena_database" {
  default = "art_relations_log_qa"
}

variable "glue_datacatalog_table_name" {
  default = "manual_adjustment"
}

variable "team_name" {
  description = "team name"
  type        = string
  default     = "appsec"
}
