

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

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

variable "iam_policy_file_location" {
  default = "policies"
}

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

variable "vpc_subnet_ids" {
  type        = list(string)
  description = "VPC subnet IDs where the lambdas will execute"
  default     = ["subnet-cb4dbae0", "subnet-5366ef24"]
}

variable "SENTRY_DSN" {
  description = "Sentry DSN"
  default     = "https://5122a6ef34a047f5aa2d96f73fda1012:04e6a86b769346e089a5f77d75056273@sentry.io/1336323"
}

variable "vpc_id" {
  default = "vpc-7f0e841a"
}

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

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

variable "athena_database" {
  default = "art_relations_log_prod"
}

variable "glue_datacatalog_table_name" {
  default = "manual_adjustment"
}
