-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
35 lines (29 loc) · 1.08 KB
/
outputs.tf
File metadata and controls
35 lines (29 loc) · 1.08 KB
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
output "instances_self_links" {
description = "List of self-links for compute instances"
value = google_compute_instance_from_template.compute_instance[*].self_link
}
output "instances_details" {
description = "List of all details for compute instances"
sensitive = true
value = google_compute_instance_from_template.compute_instance[*]
}
output "available_zones" {
description = "List of available zones in region"
value = data.google_compute_zones.available.names
}
output "self_link_unique" {
description = "Unique self-link of instance template (recommended output to use instead of self_link)"
value = google_compute_instance_template.tpl.self_link_unique
}
output "self_link" {
description = "Self-link of instance template"
value = google_compute_instance_template.tpl.self_link
}
output "name" {
description = "Name of instance template"
value = google_compute_instance_template.tpl.name
}
output "tags" {
description = "Tags that will be associated with instance(s)"
value = google_compute_instance_template.tpl.tags
}