variable "assume_role_account_names" {
  default     = []
  description = "The names of the AWS sub-accounts this IAM user can assume roles in."
  nullable    = false
  type        = list(string)
}

variable "name" {
  description = "The IAM user's name."
  nullable    = false
  type        = string
}