mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-08 07:44:57 +00:00
10 lines
395 B
HCL
10 lines
395 B
HCL
output "instance_template_self_link" {
|
|
description = "The self-link of the created instance template. Use this to deploy VMs or MIGs."
|
|
value = google_compute_instance_template.container_vm_template.self_link
|
|
}
|
|
|
|
output "instance_template_name" {
|
|
description = "The name of the created instance template."
|
|
value = google_compute_instance_template.container_vm_template.name
|
|
}
|
|
|