Skip to content

Commit

Permalink
Merge branch 'develop' into release-9.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rhassan committed Feb 29, 2024
2 parents cf3b891 + 1626a95 commit d9011d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ If deployed correctly, the target group health checks should show as healthy.

- *ORCA-441* - Updated policies for ORCA buckets and copy_to_archive to give them only the permissions needed to restrict unwanted/unintended actions.
- *ORCA-746* - Enabled HTTPS listener in application load balancer for GraphQL server using AWS Certificate Manager.

- *ORCA-828* - Added prefix to ORCA SNS topic names to avoid `object already exists` errors.

### Deprecated

Expand Down
10 changes: 5 additions & 5 deletions modules/sqs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ resource "aws_cloudwatch_metric_alarm" "archive_recovery_deadletter_alarm" {

# SNS topic needed for cloudwatch alarm
resource "aws_sns_topic" "archive_recovery_dlq_alarm" {
name = "archive_recovery_dlq_alarm_topic"
name = "${var.prefix}-archive_recovery_dlq_alarm_topic"
kms_master_key_id = "alias/aws/sns"
tags = var.tags

Expand Down Expand Up @@ -279,7 +279,7 @@ resource "aws_cloudwatch_metric_alarm" "internal_report_deadletter_alarm" {

# SNS topic needed for cloudwatch alarm
resource "aws_sns_topic" "internal_report_dlq_alarm" {
name = "internal_report_dlq_alarm_topic"
name = "${var.prefix}-internal_report_dlq_alarm_topic"
kms_master_key_id = "alias/aws/sns"
tags = var.tags
}
Expand Down Expand Up @@ -393,7 +393,7 @@ resource "aws_cloudwatch_metric_alarm" "s3_inventory_deadletter_alarm" {

# SNS topic needed for cloudwatch alarm
resource "aws_sns_topic" "s3_inventory_dlq_alarm" {
name = "s3_inventory_dlq_alarm_topic"
name = "${var.prefix}-s3_inventory_dlq_alarm_topic"
kms_master_key_id = "alias/aws/sns"
tags = var.tags
}
Expand Down Expand Up @@ -481,7 +481,7 @@ resource "aws_cloudwatch_metric_alarm" "staged_recovery_deadletter_alarm" {

# SNS topic needed for cloudwatch alarm
resource "aws_sns_topic" "staged_recovery_dlq_alarm" {
name = "staged_recovery_dlq_alarm_topic"
name = "${var.prefix}-staged_recovery_dlq_alarm_topic"
kms_master_key_id = "alias/aws/sns"
tags = var.tags

Expand Down Expand Up @@ -572,7 +572,7 @@ resource "aws_cloudwatch_metric_alarm" "status_update_deadletter_alarm" {

# SNS topic needed for cloudwatch alarm
resource "aws_sns_topic" "status_update_dlq_alarm" {
name = "status_update_dlq_alarm_topic"
name = "${var.prefix}-status_update_dlq_alarm_topic"
kms_master_key_id = "alias/aws/sns"
tags = var.tags
}
Expand Down

0 comments on commit d9011d9

Please sign in to comment.