-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
29 lines (24 loc) · 821 Bytes
/
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
output "asset_self_links" {
value = module.dataplex_assets.self_links
description = "Map of self links to the defined Dataplex assets"
}
output "asset_uids" {
value = module.dataplex_assets.uids
description = "Map of UIDs to the defined Dataplex assets"
}
output "lake_self_links" {
value = module.dataplex_lakes.self_links
description = "Map of self links to the defined Dataplex lakes"
}
output "lake_uids" {
value = module.dataplex_lakes.uids
description = "Map of UIDs to the defined Dataplex lakes"
}
output "zone_self_links" {
value = module.dataplex_zones.self_links
description = "Map of self links to the defined Dataplex zones"
}
output "zone_uids" {
value = module.dataplex_zones.uids
description = "Map of UIDs to the defined Dataplex zones"
}