-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update autoscaler version * readme updated * Auto Format Co-authored-by: cloudpossebot <[email protected]>
- Loading branch information
1 parent
62a2566
commit 2e7e68f
Showing
6 changed files
with
677 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
|
||
**/.build-harness | ||
**/build-harness | ||
|
||
**/.terraform.lock.hcl |
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,29 +1,59 @@ | ||
output "table_name" { | ||
value = module.dynamodb_table.table_name | ||
output "table_name_1" { | ||
value = module.dynamodb_table_1.table_name | ||
description = "DynamoDB table name" | ||
} | ||
|
||
output "table_id" { | ||
value = module.dynamodb_table.table_id | ||
output "table_id_1" { | ||
value = module.dynamodb_table_1.table_id | ||
description = "DynamoDB table ID" | ||
} | ||
|
||
output "table_arn" { | ||
value = module.dynamodb_table.table_arn | ||
output "table_arn_1" { | ||
value = module.dynamodb_table_1.table_arn | ||
description = "DynamoDB table ARN" | ||
} | ||
|
||
output "global_secondary_index_names" { | ||
value = module.dynamodb_table.global_secondary_index_names | ||
output "global_secondary_index_names_1" { | ||
value = module.dynamodb_table_1.global_secondary_index_names | ||
description = "DynamoDB secondary index names" | ||
} | ||
|
||
output "table_stream_arn" { | ||
value = module.dynamodb_table.table_stream_arn | ||
output "table_stream_arn_1" { | ||
value = module.dynamodb_table_1.table_stream_arn | ||
description = "DynamoDB table stream ARN" | ||
} | ||
|
||
output "table_stream_label" { | ||
value = module.dynamodb_table.table_stream_label | ||
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" | ||
} |
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
Oops, something went wrong.