-
Notifications
You must be signed in to change notification settings - Fork 21
/
output.tf
59 lines (48 loc) · 1.27 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "bucket_name" {
value = local.bucket_name
description = "S3 Bucket name"
}
output "bucket_arn" {
value = local.bucket_arn
description = "S3 Bucket ARN"
}
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.url
description = "SQS Queue URL"
}
output "sns_arn" {
value = local.sns_topic_arn
description = "SNS Topic ARN"
}
output "sns_name" {
value = local.sns_topic_name
description = "SNS Topic name"
}
output "external_id" {
value = local.iam_role_external_id
description = "The External ID configured into the IAM role"
}
output "iam_role_name" {
value = local.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"
}
output "bucket_sse_key_arn" {
value = local.bucket_sse_key_arn
description = "The ARN of the KMS encryption key used for S3"
}