-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathoutputs.tf
39 lines (32 loc) · 989 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 = join("", aws_cloudwatch_log_group.default.*.arn)
description = "ARN of the log group"
}
output "vpc_flow_id" {
value = join("", aws_flow_log.vpc.*.id)
description = "VPC Flow Log ID"
}
output "subnet_flow_ids" {
value = join("", aws_flow_log.subnets.*.id)
description = "Flow Log IDs of subnets"
}
output "eni_flow_ids" {
value = join("", aws_flow_log.eni.*.id)
description = "Flow Log IDs of ENIs"
}
output "kinesis_id" {
value = join("", aws_kinesis_stream.default.*.id)
description = "Kinesis Stream ID"
}
output "kinesis_name" {
value = join("", aws_kinesis_stream.default.*.name)
description = "Kinesis Stream name"
}
output "kinesis_shard_count" {
value = join("", aws_kinesis_stream.default.*.shard_count)
description = "Kinesis Stream Shard count"
}
output "kinesis_arn" {
value = join("", aws_kinesis_stream.default.*.arn)
description = "Kinesis Stream ARN"
}