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

variable "secrets_manager_secret_names" {
  type        = list(string)
  description = "List of secrets manager secrets to create"
  default = [
    "COMPOSER_GITHUB_AUTH",
  ]
}

variable "environment" {
  type        = string
  description = "The environment"
  default     = "prod"
}

variable "service_name" {
  type        = string
  description = "The service name"
  default     = "vector-pipeline"
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "vector"
}
