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",
    "TEST_DB_PWD",
    "CLOUDFLARE_API_TOKEN"
  ]
}

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

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

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "security-tools"
}
