variable "name_prefix" {
  type        = string
  description = "Prefix which will be applied to the names of resources."
}

variable "name" {
  type        = string
  description = "Name of the role"
}

variable "common_tags" {
  type        = map(any)
  description = "Map of tags to apply."
  default     = {}
}

variable "policies_list" {
  type        = list(string)
  description = "List of arn's of policies which you want to attach to Spot fleet role."
  default     = []
}

variable "enable_default_policy" {
  type        = bool
  description = "If true, assigns AmazonEC2SpotFleetTaggingRole to created role."
  default     = true
}
