output "document_names" { description = "Map of logical key to SSM document name" value = { for k, v in aws_ssm_document.this : k => v.name } } output "document_arns" { description = "Map of logical key to SSM document ARN" value = { for k, v in aws_ssm_document.this : k => v.arn } } output "maintenance_window_ids" { description = "Map of logical key to maintenance window ID" value = { for k, v in aws_ssm_maintenance_window.this : k => v.id } } output "patch_baseline_ids" { description = "Map of logical key to patch baseline ID" value = { for k, v in aws_ssm_patch_baseline.this : k => v.id } }