ip -> ipv4...

...explictly label current ip values as ipv4, in order to more
easily add ipv6 support later on.
This commit is contained in:
phaer
2022-02-26 12:26:14 +01:00
parent 52b3d9b82c
commit 38fc145ad0
10 changed files with 30 additions and 31 deletions

View File

@@ -30,12 +30,12 @@ variable "network_region" {
type = string
}
variable "network_ip_range" {
description = "Default IP range for network"
variable "network_ipv4_range" {
description = "Default IPv4 range for network"
type = string
}
variable "network_subnets" {
variable "network_ipv4_subnets" {
description = "Subnets definition for default network"
type = map(string)
}
@@ -50,7 +50,6 @@ variable "control_plane_count" {
type = number
}
variable "load_balancer_type" {
description = "Default load balancer server type"
type = string