variable "aws_region" {
  description = "The AWS region"
  type        = string
  default     = "us-east-1"
}

variable "lambda_assume_role_service_identifiers" {
  description = "List of service identifiers for assume role trust relationship policy. Defaults are lambda and cloudwatch events"
  type        = list(string)
  default     = ["lambda.amazonaws.com", "events.amazonaws.com"]
}
