variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

variable "script_names" {
  description = "List of script names"
  type = list(string)
  default = [
    "security-scripts/github-public-repo-audit",
    "security-scripts/github-vuln-scanner"
  ]
}
