This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
forked from cloudposse/terraform-aws-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
59 lines (48 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "table_name_1" {
value = module.dynamodb_table_1.table_name
description = "DynamoDB table name"
}
output "table_id_1" {
value = module.dynamodb_table_1.table_id
description = "DynamoDB table ID"
}
output "table_arn_1" {
value = module.dynamodb_table_1.table_arn
description = "DynamoDB table ARN"
}
output "global_secondary_index_names_1" {
value = module.dynamodb_table_1.global_secondary_index_names
description = "DynamoDB secondary index names"
}
output "table_stream_arn_1" {
value = module.dynamodb_table_1.table_stream_arn
description = "DynamoDB table stream ARN"
}
output "table_stream_label_1" {
value = module.dynamodb_table_1.table_stream_label
description = "DynamoDB table stream label"
}
output "table_name_2" {
value = module.dynamodb_table_2.table_name
description = "DynamoDB table name"
}
output "table_id_2" {
value = module.dynamodb_table_2.table_id
description = "DynamoDB table ID"
}
output "table_arn_2" {
value = module.dynamodb_table_2.table_arn
description = "DynamoDB table ARN"
}
output "global_secondary_index_names_2" {
value = module.dynamodb_table_2.global_secondary_index_names
description = "DynamoDB secondary index names"
}
output "table_stream_arn_2" {
value = module.dynamodb_table_2.table_stream_arn
description = "DynamoDB table stream ARN"
}
output "table_stream_label_2" {
value = module.dynamodb_table_2.table_stream_label
description = "DynamoDB table stream label"
}