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

variable "lambda_function_names" {
  description = "List of lambda function names"
  type        = list(string)
  default = [
    "lambda-ioc-sanitize",
    "lambda-ioc-route53-resolver",
    "lambda-ioc-update-waf-ipsets",
    "lambda-ioc-fargate-redeploy",
    "lambda-ioc-update-dns-firewall",
  ]
}
