variable "aws_region_id" {
  type        = string
  description = "The id of the region in AWS"
  default     = "us-east-1"
}

variable "env_prefix" {
  type = string
}

variable "s3_paths" {
  type        = list(string)
  description = "List of s3 urls with prefixes which should be monitored"
}

variable "subject" {
  type        = string
  description = "Subject which will be used during notifications to recepients"
  default     = "Delphi smf_mcr/smf_mapping upload notification"
}

variable "schedule_expression" {
  description = "Schedule expression"
  type        = string
}

variable "schedule_enabled" {
  description = "Define if schedule trigger is enabled or not."
  type        = bool
}

variable "notify_emails" {
  type        = list(string)
  description = "Subscribe given emails to SNS"
}
