forked from cloudposse/terraform-aws-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.09 KB
/
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
output "table_name" {
value = module.dynamodb_table.table_name
description = "DynamoDB table name"
}
output "table_id" {
value = module.dynamodb_table.table_id
description = "DynamoDB table ID"
}
output "table_arn" {
value = module.dynamodb_table.table_arn
description = "DynamoDB table ARN"
}
output "global_secondary_index_names" {
value = module.dynamodb_table.global_secondary_index_names
description = "DynamoDB global secondary index names"
}
output "local_secondary_index_names" {
value = module.dynamodb_table.local_secondary_index_names
description = "DynamoDB local secondary index names"
}
output "table_stream_arn" {
value = module.dynamodb_table.table_stream_arn
description = "DynamoDB table stream ARN"
}
output "table_stream_label" {
value = module.dynamodb_table.table_stream_label
description = "DynamoDB table stream label"
}
output "hash_key" {
value = var.hash_key
description = "DynamoDB table hash key"
}
output "range_key" {
value = var.range_key
description = "DynamoDB table range key"
}