# Storage Module - Outputs # RFC 0039: ADR-Compliant Foundation Infrastructure output "efs_id" { description = "EFS filesystem ID" value = aws_efs_file_system.main.id } output "efs_arn" { description = "EFS filesystem ARN" value = aws_efs_file_system.main.arn } output "efs_dns_name" { description = "EFS filesystem DNS name" value = aws_efs_file_system.main.dns_name } output "efs_access_point_id" { description = "EFS access point ID" value = aws_efs_access_point.main.id } output "efs_security_group_id" { description = "EFS security group ID" value = aws_security_group.efs.id } output "backup_bucket_name" { description = "S3 bucket name for backups" value = aws_s3_bucket.backups.id } output "backup_bucket_arn" { description = "S3 bucket ARN for backups" value = aws_s3_bucket.backups.arn } output "blob_bucket_name" { description = "S3 bucket name for blob storage" value = aws_s3_bucket.blobs.id } output "blob_bucket_arn" { description = "S3 bucket ARN for blob storage" value = aws_s3_bucket.blobs.arn } output "kms_key_arn" { description = "KMS key ARN for storage encryption" value = aws_kms_key.storage.arn } output "kms_key_id" { description = "KMS key ID for storage encryption" value = aws_kms_key.storage.key_id }