Skip to content

Commit

Permalink
fix(test-results): RD-1494 add reports for build-test
Browse files Browse the repository at this point in the history
  • Loading branch information
aramkarapetian committed Sep 23, 2024
1 parent 7bbf573 commit 11db0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event-notifications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data "aws_iam_policy_document" "queue" {
resource "aws_sqs_queue" "queue" {
count = var.event_notification_config.target_type == "sqs" ? 1 : 0

name = "${var.name}${var.event_notification_config.name_suffix}"
name = replace("${var.name}${var.event_notification_config.name_suffix}", ".", "_")
policy = data.aws_iam_policy_document.queue[0].json
}

Expand Down

0 comments on commit 11db0c3

Please sign in to comment.