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

variable "name" {
  type        = string
  description = "Name of the resource."
  default     = "queue"
}

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

# arn:aws:sqs:region:account-id:queuename
variable "sqs_arn" {
  type        = string
  description = "ARN of the SQS queue to which access will be provided."
}

# arn:aws:sqs:region:account-id:...
variable "kms_arn" {
  type        = string
  description = "ARN of the KMS master key to be used for SSE."
  default     = null
}

variable "kms_arn_list" {
  type        = list(string)
  description = "List of ARNs of the KMS master key to be used for SSE."
  default     = []
}
