File tree Expand file tree Collapse file tree 5 files changed +15
-4
lines changed
preemptible_and_regular_instance_templates Expand file tree Collapse file tree 5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
88## [ Unreleased]
9+ ## [ 1.3.0] - 2019-12-09
10+
11+ ### Added
12+
13+ - Output for ` tags ` from ` instance_template ` [ #33 ]
914
1015## [ 1.2.0] - 2019-11-28
1116
Original file line number Diff line number Diff line change @@ -45,5 +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+ | tags | Tags that will be associated with instance(s) |
4849
4950<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -23,3 +23,8 @@ output "name" {
2323 description = " Name of instance template"
2424 value = google_compute_instance_template. tpl . name
2525}
26+
27+ output "tags" {
28+ description = " Tags that will be associated with instance(s)"
29+ value = google_compute_instance_template. tpl . tags
30+ }
Original file line number Diff line number Diff line change @@ -170,9 +170,9 @@ variable "shielded_instance_config" {
170170# ##########################
171171variable "access_config" {
172172 description = " Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet."
173- type = list (object ({
173+ type = list (object ({
174174 nat_ip = string
175175 network_tier = string
176176 }))
177- default = []
177+ default = []
178178}
Original file line number Diff line number Diff line change @@ -141,9 +141,9 @@ variable "service_account" {
141141# ##########################
142142variable "access_config" {
143143 description = " Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet."
144- type = list (object ({
144+ type = list (object ({
145145 nat_ip = string
146146 network_tier = string
147147 }))
148- default = []
148+ default = []
149149}
You can’t perform that action at this time.
0 commit comments