1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 }
}
|