Skip to content

Commit 023cff5

Browse files
committed
expose tags from template
1 parent e25cb35 commit 023cff5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/instance_template/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ See the [simple](../../examples/instance_template/simple) for a usage example.
4545
|------|-------------|
4646
| name | Name of instance template |
4747
| self\_link | Self-link of instance template |
48-
| target\_tags | Tags that will be associated with instance(s) |
48+
| tags | Tags that will be associated with instance(s) |
4949

5050
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/instance_template/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ output "name" {
2424
value = google_compute_instance_template.tpl.name
2525
}
2626

27-
output "target_tags" {
27+
output "tags" {
2828
description = "Tags that will be associated with instance(s)"
29-
value = var.tags
29+
value = google_compute_instance_template.tpl.tags
3030
}

0 commit comments

Comments
 (0)