-
Notifications
You must be signed in to change notification settings - Fork 4
/
output.tf
39 lines (32 loc) · 885 Bytes
/
output.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "sqs_name" {
value = local.sqs_queue_name
description = "SQS Queue name"
}
output "sqs_arn" {
value = aws_sqs_queue.lacework_cloudtrail_sqs_queue.arn
description = "SQS Queue ARN"
}
output "sqs_url" {
value = aws_sqs_queue.lacework_cloudtrail_sqs_queue.id
description = "SQS Queue URL"
}
output "sns_arn" {
value = var.sns_topic_arn
description = "SNS Topic ARN"
}
output "external_id" {
value = local.iam_role_external_id
description = "The External ID configured into the IAM role"
}
output "iam_role_name" {
value = var.iam_role_name
description = "The IAM Role name"
}
output "iam_role_arn" {
value = local.iam_role_arn
description = "The IAM Role ARN"
}
output "lacework_integration_guid" {
value = local.lacework_integration_guid
description = "Lacework CloudTrail Integration GUID"
}