You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to set ip aliases while create compute instances. Would you accept a PR for it?
Terraform Resources
compute instances
Detailed design
The idea is to have a new variable
variable "alias_ip_range" {
description = "(Optional) An array of alias IP ranges for this network interface. Can only be specified for network interfaces on subnet-mode networks."
type = list(object({
ip_cidr_range = string
subnetwork_range_name = string
}))
default = []
}
And add a dynamic block inside of network interface
TL;DR
I want to be able to set ip aliases while create compute instances. Would you accept a PR for it?
Terraform Resources
Detailed design
And add a dynamic block inside of network interface
The text was updated successfully, but these errors were encountered: