-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoutputs.tf
70 lines (61 loc) · 1.98 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
output "id" {
description = "The ID of the QuickSight folder."
value = aws_quicksight_folder.this.folder_id
}
output "arn" {
description = "The ARN of the QuickSight folder."
value = aws_quicksight_folder.this.arn
}
output "name" {
description = "The name of the QuickSight folder."
value = aws_quicksight_folder.this.folder_id
}
output "display_name" {
description = "The display name of the QuickSight folder."
value = aws_quicksight_folder.this.name
}
output "type" {
description = "The type of the QuickSight folder."
value = aws_quicksight_folder.this.folder_type
}
output "hierarchy" {
description = "The hierarchy of the QuickSight folder."
value = {
path = aws_quicksight_folder.this.folder_path
parent_folder = aws_quicksight_folder.this.parent_folder_arn
}
}
output "permissions" {
description = "A list of resource permissions on the QuickSight folder."
value = aws_quicksight_folder.this.permissions
}
output "created_at" {
description = "The time that the QuickSight folder was created."
value = aws_quicksight_folder.this.created_time
}
output "updated_at" {
description = "The time that the QuickSight folder was last updated."
value = aws_quicksight_folder.this.last_updated_time
}
output "assets" {
description = <<EOF
A configuration for assets of this QuickSight folder.
`analyses` - A list of the IDs of the analysis assets of this QuickSight folder.
`dashboards` - A list of the IDs of the dashboard assets of this QuickSight folder.
`datasets` - A list of the IDs of the dataset assets of this QuickSight folder.
EOF
value = {
analyses = [
for analysis in aws_quicksight_folder_membership.analysis :
analysis.member_id
]
dashboards = [
for dashboard in aws_quicksight_folder_membership.dashboard :
dashboard.member_id
]
datasets = [
for dataset in aws_quicksight_folder_membership.dataset :
dataset.member_id
]
}
}