Skip to content

Commit 6d8c65e

Browse files
authored
Add dynamodb stream to output (#10)
1 parent 7f2ebb3 commit 6d8c65e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

outputs.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,11 @@ output "table_arn" {
1313
output "global_secondary_index_names" {
1414
value = ["${null_resource.global_secondary_indexes.*.triggers.name}"]
1515
}
16+
17+
output "table_stream_arn" {
18+
value = "${aws_dynamodb_table.default.stream_arn}"
19+
}
20+
21+
output "table_stream_label" {
22+
value = "${aws_dynamodb_table.default.stream_label}"
23+
}

0 commit comments

Comments
 (0)