Skip to content

Commit

Permalink
* 2.12.2 -- 2025-08-25
Browse files Browse the repository at this point in the history
  - terraform-state
    - add output: tfstate_dynamodb_table_name
  • Loading branch information
badra001 committed Aug 25, 2025
1 parent 5d80d89 commit b9def42
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,3 +412,7 @@
* 2.12.1 -- 2025-07-14
- examples/application-terraform-state
- add files for example application terraform state (will turn into submodule later)

* 2.12.2 -- 2025-08-25
- terraform-state
- add output: tfstate_dynamodb_table_name
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.12.1"
_module_version = "2.12.2"
}
1 change: 1 addition & 0 deletions terraform-state/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ No modules.
| <a name="output_tfstate_bucket_arn"></a> [tfstate\_bucket\_arn](#output\_tfstate\_bucket\_arn) | Terraform state S3 bucket ARN |
| <a name="output_tfstate_bucket_id"></a> [tfstate\_bucket\_id](#output\_tfstate\_bucket\_id) | Terraform state S3 bucket ID |
| <a name="output_tfstate_dynamodb_arn"></a> [tfstate\_dynamodb\_arn](#output\_tfstate\_dynamodb\_arn) | Terraform state DynamoDB table ARN |
| <a name="output_tfstate_dynamodb_table_name"></a> [tfstate\_dynamodb\_table\_name](#output\_tfstate\_dynamodb\_table\_name) | Terraform state DynamoDB table name |
| <a name="output_tfstate_key_arn"></a> [tfstate\_key\_arn](#output\_tfstate\_key\_arn) | inf-tfstate KMS key ARN |
| <a name="output_tfstate_region"></a> [tfstate\_region](#output\_tfstate\_region) | Terraform state region |
<!-- END_TF_DOCS -->
5 changes: 5 additions & 0 deletions terraform-state/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ output "tfstate_dynamodb_arn" {
value = aws_dynamodb_table.tfstate.arn
}

output "tfstate_dynamodb_table_name" {
description = "Terraform state DynamoDB table name"
value = aws_dynamodb_table.tfstate.name
}

output "tfstate_region" {
description = "Terraform state region"
value = local.tfstate_region
Expand Down

0 comments on commit b9def42

Please sign in to comment.