Skip to content

Commit

Permalink
feat!: allow to override compute instance labels (#311)
Browse files Browse the repository at this point in the history
Co-authored-by: Bharath KKB <[email protected]>
  • Loading branch information
jay7x and bharathkkb authored Jul 19, 2023
1 parent 1c8f775 commit aea74d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/compute_instance/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ resource "google_compute_instance_from_template" "compute_instance" {
zone = var.zone == null ? data.google_compute_zones.available.names[count.index % length(data.google_compute_zones.available.names)] : var.zone
deletion_protection = var.deletion_protection
resource_policies = var.resource_policies

labels = var.labels

dynamic "network_interface" {
for_each = local.network_interface
Expand Down
6 changes: 6 additions & 0 deletions modules/compute_instance/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,9 @@ variable "resource_policies" {
type = list(string)
default = []
}

variable "labels" {
type = map(string)
description = "(Optional) Labels to override those from the template, provided as a map"
default = null
}

0 comments on commit aea74d1

Please sign in to comment.