-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
35 lines (30 loc) · 1.17 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
# Module scaffolded via skyvafnir-module-template by
# Author: jonorri
# Version: 0.1.0
# Timestamp: 2023-04-29T10:53:38
output "datalakehouse_contributor_group_info" {
description = "The Data Lakehouse Contributor group"
value = local.data_factory_enabled || local.warehouse_enabled ? {
display_name = module.data_engineer_user_group[0].group_display_name
id = module.data_engineer_user_group[0].group_id
} : null
}
output "datalakehouse_warehouse_admin_group_info" {
description = "The Data Lakehouse Warehouse Admin group"
value = local.warehouse_enabled ? {
display_name = module.warehouse_admin_group[0].group_display_name
id = module.warehouse_admin_group[0].group_id
} : null
}
output "datalakehouse_warehouse_connection_info" {
description = "The Data Lakehouse Warehouse Connection Info"
value = local.warehouse_enabled ? module.datawarehouse : null
}
output "datafactory_info" {
description = "The Data Factory Info"
value = local.data_factory_enabled ? module.datafactory : null
}
output "datalake_info" {
description = "The Data Lake Info"
value = local.datalake_enabled ? module.datalake : null
}