variable "function_name" {
  description = "Lambda function arn"
  type        = string
}

variable "name" {
  description = "Name of the event bridge rule"
  type        = string
  default     = ""
}

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

variable "account_id" {
  description = "AWS account id"
  type        = string
}

variable "region" {
  description = "AWS account id"
  type        = string
  default     = "us-east-1"
}

variable "is_enabled" {
  description = "Define if trigger is enabled or not."
  type        = bool
  default     = true
}

variable "input" {
  description = "(Optional) Valid JSON text passed to the target. "
  type        = string
  default     = null
}
