output "bucket_arns" {
  description = "Map of bucket ARNs keyed by logical name"
  value       = { for k, v in aws_s3_bucket.this : k => v.arn }
}

output "bucket_ids" {
  description = "Map of bucket IDs (names) keyed by logical name"
  value       = { for k, v in aws_s3_bucket.this : k => v.id }
}
