generated from libre-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
29 lines (24 loc) · 1017 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 "gallery_id" {
description = "The ID of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.id }
}
output "gallery_location" {
description = "The location name of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.location }
}
output "gallery_name" {
description = "The name name of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.name }
}
output "gallery_rg_name" {
description = "The rg name of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.resource_group_name }
}
output "gallery_tags" {
description = "The tags of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.tags }
}
output "gallery_unique_name" {
description = "The unique name of the gallery"
value = { for k, v in azurerm_shared_image_gallery.compute_gallery : k => v.unique_name }
}