File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
modules/instance_template Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ See the [simple](../../examples/instance_template/simple) for a usage example.
6262| ------| -------------|
6363| name | Name of instance template |
6464| self\_ link | Self-link of instance template |
65+ | self\_ link\_ unique | Unique self-link of instance template (recommended output to use instead of self\_ link) |
6566| tags | Tags that will be associated with instance(s) |
6667
6768<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ output "self_link_unique" {
18+ description = " Unique self-link of instance template (recommended output to use instead of self_link)"
19+ value = google_compute_instance_template. tpl . self_link_unique
20+ }
21+
1722output "self_link" {
1823 description = " Self-link of instance template"
1924 value = google_compute_instance_template. tpl . self_link
You can’t perform that action at this time.
0 commit comments