variable "require_mfa" {
  type        = bool
  description = "Boolean to determine whether the role should require users assuming it to have MFA enabled"
  default     = false
}

variable "principal_list" {
  type        = list(string)
  description = "List of arn's of accounts, users or roles who can assume this role."
  default     = []
}
