variable "role" {
  type        = string
  description = "IAM role attached to the Lambda Function."
}

variable "region" {
  type        = string
  description = "A region where Secrets are stored."
  default     = "us-east-1"
}

variable "source_arn" {
  type        = string
  description = "When the principal is an AWS service, the ARN of the specific resource within that service to grant permission to."
}

variable "tags" {
  type        = map(string)
  description = "A map of tags to assign to the resource."
  default     = {}
}

variable "secrets_path" {
  type        = string
  description = "Path to secrets for users. Should end with a trailing slash"
}
