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

variable "script_names" {
  description = "List of lambda function names"
  type        = list(string)
  default = [
    "dolby-atmos-packager-alpha",
    "xml-generator"
  ]
}
