We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62edfe0 commit b8be126Copy full SHA for b8be126
infrastructure/terraform/modules/eventsub/sns_topic.tf
@@ -1,6 +1,8 @@
1
resource "aws_sns_topic" "main" {
2
- name = local.csi
3
- kms_master_key_id = var.kms_key_arn
+ name = local.csi
+ kms_master_key_id = var.kms_key_arn
4
+ fifo_topic = true
5
+ content_based_deduplication = true
6
7
application_failure_feedback_role_arn = var.enable_sns_delivery_logging == true ? aws_iam_role.sns_delivery_logging_role[0].arn : null
8
application_success_feedback_role_arn = var.enable_sns_delivery_logging == true ? aws_iam_role.sns_delivery_logging_role[0].arn : null
0 commit comments