variable "name_prefix" {
  type        = string
  description = "The prefix which will be added to the name of all resources."
}

variable "server_id" {
  type        = string
  description = "The Server ID of the Transfer Server"
}

variable "user_name" {
  type        = string
  description = "The name used for log in to your SFTP server."
}

variable "home_directory" {
  type        = string
  description = "The landing directory (folder) for a user when they log in to the server using their SFTP client."
}

variable "role_policy_attachments" {
  type        = map(string)
  description = "A map of policies to attach to the role."
  default     = {}
}

variable "public_keys" {
  type        = list(string)
  description = "The public key portion of an SSH key pair."
  default     = []
}

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