terraform-google-modules/terraform-google-vm

When specifying additional_networks, Access_config is not optional

Closed this issue · 1 comments

The list object access_config is not optional

variable "additional_networks" {
  description = "Additional network interface details for GCE, if any."
  default     = []
  type = list(object({
    network            = string
    subnetwork         = string
    subnetwork_project = string
    network_ip         = string
    **access_config = list(object({
      nat_ip       = string
      network_tier = string**
    }))
  }))
}

This should be optional if you don't necessarily need external IP address

This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days