forked from threatstack/threatstack-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
57 lines (43 loc) · 1006 Bytes
/
outputs.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
// Outputs
output "cloudtrail_id" {
value = "${aws_cloudtrail.ct.id}"
}
output "cloudtrail_home_region" {
value = "${aws_cloudtrail.ct.home_region}"
}
output "cloudtrail_arn" {
value = "${aws_cloudtrail.ct.arn}"
}
output "iam_role_cloudtrail_name" {
value = "${aws_iam_role.ct.name}"
}
output "iam_role_cloudtrail_arn" {
value = "${aws_iam_role.ct.arn}"
}
output "cloudwatch_log_group_arn" {
value = "${aws_cloudwatch_log_group.ct.arn}"
}
output "iam_role_name" {
value = "${aws_iam_role.role.name}"
}
output "iam_role_arn" {
value = "${aws_iam_role.role.arn}"
}
output "s3_bucket_id" {
value = "${aws_s3_bucket.bucket.id}"
}
output "s3_bucket_arn" {
value = "${aws_s3_bucket.bucket.arn}"
}
output "sns_topic_arn" {
value = "${aws_sns_topic.sns.arn}"
}
output "sqs_queue_id" {
value = "${aws_sqs_queue.sqs.id}"
}
output "sqs_queue_arn" {
value = "${aws_sqs_queue.sqs.arn}"
}
output "sqs_queue_source" {
value = "${element(split(":", aws_sqs_queue.sqs.arn), 5)}"
}