forked from cloudposse/terraform-aws-cloudwatch-flow-logs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
40 lines (32 loc) · 900 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
output "log_group_arn" {
value = aws_cloudwatch_log_group.default[0].arn
description = "ARN of the log group"
}
output "vpc_flow_id" {
value = aws_flow_log.vpc[0].id
description = "Flow Log IDs of VPCs"
}
output "subnet_flow_ids" {
value = aws_flow_log.subnets.*.id
description = "Flow Log IDs of subnets"
}
output "eni_flow_ids" {
value = aws_flow_log.eni.*.id
description = "Flow Log IDs of ENIs"
}
output "kinesis_id" {
value = aws_kinesis_stream.default[0].id
description = "Stream ID"
}
output "kinesis_name" {
value = aws_kinesis_stream.default[0].name
description = "Stream name"
}
output "kinesis_shard_count" {
value = aws_kinesis_stream.default[0].shard_count
description = "Count of Shards for Stream"
}
output "kinesis_arn" {
value = aws_kinesis_stream.default[0].arn
description = "ARN of Stream"
}