Exposed stack_type variable in compute_vm module (#1756)

* Exposed stack_type variable in compute_vm module

* Updated README.md

* align instance template, fix variable ordering

---------

Co-authored-by: Ludo <ludomagno@google.com>
This commit is contained in:
luigi-bitonti
2023-10-16 08:28:56 +02:00
committed by GitHub
parent 28e19ab180
commit 0195ea6bca
3 changed files with 18 additions and 15 deletions

View File

@@ -240,15 +240,16 @@ variable "name" {
variable "network_interfaces" {
description = "Network interfaces configuration. Use self links for Shared VPC, set addresses to null if not needed."
type = list(object({
nat = optional(bool, false)
network = string
subnetwork = string
alias_ips = optional(map(string), {})
nat = optional(bool, false)
nic_type = optional(string)
stack_type = optional(string)
addresses = optional(object({
internal = optional(string)
external = optional(string)
}), null)
alias_ips = optional(map(string), {})
nic_type = optional(string)
}))
}