Files
2026-02-22 05:37:03 +00:00

15 lines
381 B
HCL

output "s3_bucket_name" {
value = aws_s3_bucket.images.bucket
description = "S3 bucket for image uploads"
}
output "dynamodb_table_name" {
value = aws_dynamodb_table.metadata.name
description = "DynamoDB table for metadata"
}
output "security_alerts_topic" {
value = aws_sns_topic.security_alerts.arn
description = "SNS topic for security alerts"
}