Queues should be encrypted with customer managed KMS keys and not default AWS managed keys, in order to allow granular control over access to specific queues.
resource "aws_sns_topic" "my-topic" {
# no key id specified
}
resource "aws_sns_topic" "my-topic" {
kms_master_key_id = "/blah"
}