Skip to content

Commit 4071fc9

Browse files
committed
Fix queue names
1 parent af33bc7 commit 4071fc9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

infrastructure/terraform/components/api/module_sqs_amendments_queue.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module "amendments_queue" {
66
environment = var.environment
77
project = var.project
88
region = var.region
9-
name = "amendments-queue"
9+
name = "amendments"
1010

1111
fifo_queue = true
1212
content_based_deduplication = true

infrastructure/terraform/components/api/module_sqs_supplier_events_queue.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module "supplier_events_queue" {
66
environment = var.environment
77
project = var.project
88
region = var.region
9-
name = "supplier-events-queue"
9+
name = "supplier-events"
1010

1111
fifo_queue = true
1212
content_based_deduplication = true

infrastructure/terraform/components/api/module_sqs_supplier_requests_queue.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module "supplier_requests_queue" {
33
source = "https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.24/terraform-sqs.zip"
44

5-
name = "supplier-requests-queue"
5+
name = "supplier-requests"
66

77
aws_account_id = var.aws_account_id
88
component = var.component

0 commit comments

Comments
 (0)