variable "name" {
  description = "The name of the SNS topic to create"
  type        = string
}

variable "policy" {
  description = "The fully-formed AWS policy as JSON"
  type        = string
  default     = null
}

variable "delivery_policy" {
  description = "The SNS delivery policy"
  type        = string
  default     = null
}

variable "kms_master_key_id" {
  description = "ID of encryption key"
  type        = string
  default     = null
}

variable "common_tags" {
  description = "A mapping of tags to assign to all resources"
  type        = map(string)
  default     = {}
}
