variable "name" {
  type        = string
  description = "Name of the group"
  default     = "read-only-users"
}

variable "path" {
  type        = string
  description = "Path for group in IAM, default is /"
  default     = "/"
}

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