-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 110: Add enable deletion protection (#112)
Co-authored-by: Nacho Suay Mas <[email protected]> Co-authored-by: Dan Miller <[email protected]> Co-authored-by: Joe Niland <[email protected]>
- Loading branch information
1 parent
382d0dd
commit 1a11bea
Showing
6 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "table_name" { | ||
value = join("", aws_dynamodb_table.default.*.name) | ||
value = join("", aws_dynamodb_table.default[*].name) | ||
description = "DynamoDB table name" | ||
} | ||
|
||
output "table_id" { | ||
value = join("", aws_dynamodb_table.default.*.id) | ||
value = join("", aws_dynamodb_table.default[*].id) | ||
description = "DynamoDB table ID" | ||
} | ||
|
||
output "table_arn" { | ||
value = join("", aws_dynamodb_table.default.*.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 | ||
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 | ||
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) | ||
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) | ||
value = join("", aws_dynamodb_table.default[*].stream_label) | ||
description = "DynamoDB table stream label" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters