Files
deflock/terraform/modules/operator_info/outputs.tf
2025-05-22 23:35:26 -06:00

10 lines
270 B
HCL

output "dynamodb_table_name" {
description = "The name of the DynamoDB table"
value = aws_dynamodb_table.operator_info.name
}
output "dynamodb_table_arn" {
description = "The ARN of the DynamoDB table"
value = aws_dynamodb_table.operator_info.arn
}