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
feat: Add IP Alias Range feature on compute instance module (#233)
* Add new variable alias_ip_range default to empty slice in the compute_instance module to allow instances to set Google IP Alias Range
* Rename variable alias_ip_range to alias_ip_ranges as per Morgante's request
* Fix variable type usage
* Instance template module should not be changed
* Revert change in the example too
* Fix param name
| access\_config | Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet. | <pre>list(object({<br> nat_ip = string<br> network_tier = string<br> }))</pre> |`[]`| no |
19
19
| add\_hostname\_suffix | Adds a suffix to the hostname |`bool`|`true`| no |
20
+
| alias\_ip\_ranges | (Optional) An array of alias IP ranges for this network interface. Can only be specified for network interfaces on subnet-mode networks. | <pre>list(object({<br> ip_cidr_range = string<br> subnetwork_range_name = string<br> }))</pre> |`[]`| no |
20
21
| deletion\_protection | Enable deletion protection on this instance. Note: you must disable deletion protection before removing the resource, or the instance cannot be deleted and the Terraform run will not complete successfully. |`bool`|`false`| no |
21
22
| hostname | Hostname of instances |`string`|`""`| no |
22
23
| hostname\_suffix\_separator | Separator character to compose hostname when add\_hostname\_suffix is set to true. |`string`|`"-"`| no |
description="Enable deletion protection on this instance. Note: you must disable deletion protection before removing the resource, or the instance cannot be deleted and the Terraform run will not complete successfully."
87
87
default=false
88
88
}
89
+
90
+
variable"alias_ip_ranges" {
91
+
description="(Optional) An array of alias IP ranges for this network interface. Can only be specified for network interfaces on subnet-mode networks."
0 commit comments