-
Notifications
You must be signed in to change notification settings - Fork 8
/
outputs.tf
29 lines (24 loc) · 964 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
output "kinesis_stream_name" {
description = "The unique Kinesis stream name"
value = aws_kinesis_stream.this.name
}
output "kinesis_stream_shard_count" {
description = "The count of shards for this Kinesis stream"
value = aws_kinesis_stream.this.shard_count
}
output "kinesis_stream_arn" {
description = "The Amazon Resource Name (ARN) specifying the Stream"
value = aws_kinesis_stream.this.arn
}
output "kinesis_stream_iam_policy_read_only_arn" {
description = "The IAM Policy (ARN) read only of the Stream"
value = concat(aws_iam_policy.read-only.*.arn, [""])[0]
}
output "kinesis_stream_iam_policy_write_only_arn" {
description = "The IAM Policy (ARN) write only of the Stream"
value = concat(aws_iam_policy.write-only.*.arn, [""])[0]
}
output "kinesis_stream_iam_policy_admin_arn" {
description = "The IAM Policy (ARN) admin of the Stream"
value = concat(aws_iam_policy.admin.*.arn, [""])[0]
}