my-terraform-s3-backend/outputs.tf

9 lines
258 B
Terraform
Raw Normal View History

2024-03-02 11:59:10 +00:00
output "s3_bucket_arn" {
value = aws_s3_bucket.terraform_state.arn
description = "The ARN of the S3 bucket"
}
output "dynamodb_table_name" {
value = aws_dynamodb_table.terraform_locks.name
description = "The name of the DynamoDB table"
}