mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-13 23:42:45 +00:00
10 lines
270 B
HCL
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
|
|
}
|