forked from cloudposse/terraform-aws-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
34 lines (28 loc) · 975 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
output "table_name" {
value = join("", aws_dynamodb_table.default.*.name)
description = "DynamoDB table name"
}
output "table_id" {
value = join("", aws_dynamodb_table.default.*.id)
description = "DynamoDB table ID"
}
output "table_arn" {
value = join("", aws_dynamodb_table.default.*.arn)
description = "DynamoDB table ARN"
}
output "global_secondary_index_names" {
value = null_resource.global_secondary_index_names.*.triggers.name
description = "DynamoDB secondary index names"
}
output "local_secondary_index_names" {
value = null_resource.local_secondary_index_names.*.triggers.name
description = "DynamoDB local index names"
}
output "table_stream_arn" {
value = join("", aws_dynamodb_table.default.*.stream_arn)
description = "DynamoDB table stream ARN"
}
output "table_stream_label" {
value = join("", aws_dynamodb_table.default.*.stream_label)
description = "DynamoDB table stream label"
}