Skip to content

Commit 09d6ae9

Browse files
committed
Output the ARN of the SQS queue
1 parent 30afce5 commit 09d6ae9

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

terragrunt/modules/crates-io-logs/_terraform.tf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,3 @@ terraform {
88
}
99
}
1010
}
11-
12-
variable "bucket_account" {
13-
type = number
14-
description = "Account ID of the S3 bucket which will send events to the SQS queue"
15-
}
16-
17-
variable "bucket_arn" {
18-
type = string
19-
description = "ARN of the S3 bucket which will send events to the SQS queue"
20-
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# ARN of the SQS queue that receives S3 bucket notifications
2+
output "sqs_queue_arn" {
3+
value = aws_sqs_queue.cdn_log_event_queue.arn
4+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
variable "bucket_account" {
2+
type = number
3+
description = "Account ID of the S3 bucket which will send events to the SQS queue"
4+
}
5+
6+
variable "bucket_arn" {
7+
type = string
8+
description = "ARN of the S3 bucket which will send events to the SQS queue"
9+
}

0 commit comments

Comments
 (0)