Skip to content

Commit 2670d3e

Browse files
authored
fix: dashboards and workbooks outputs
1 parent 5837840 commit 2670d3e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

outputs.tf

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,25 @@ output "purviews" {
239239
description = "Built name of multiple Purviews with unique particle"
240240
value = local.purviews
241241
}
242+
243+
# Dashboard
244+
output "dashboard" {
245+
description = "Built name of single Dashboard"
246+
value = local.dashboard
247+
}
248+
249+
output "dashboards" {
250+
description = "Built name of multiple Dashboards with unique particle"
251+
value = local.dashboards
252+
}
253+
254+
# Workbook
255+
output "workbook" {
256+
description = "Built name of single Workbook"
257+
value = local.workbook
258+
}
259+
260+
output "workbooks" {
261+
description = "Built name of multiple Workbooks with unique particle"
262+
value = local.workbooks
263+
}

0 commit comments

Comments
 (0)