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:
@@ -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)
|
||||
}))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user