add specific subnet for nodepool

This commit is contained in:
jodhi
2022-02-26 01:16:38 +07:00
parent b5039e2bc1
commit c9101824fc
10 changed files with 62 additions and 31 deletions

View File

@@ -30,6 +30,16 @@ variable "network_region" {
type = string
}
variable "network_ip_range" {
description = "Default IP range for network"
type = string
}
variable "network_subnets" {
description = "Subnets definition for default network"
type = map(string)
}
variable "control_plane_server_type" {
description = "Default control plane server type"
type = string
@@ -52,11 +62,6 @@ variable "servers_num" {
type = number
}
variable "agents_num" {
description = "Number of agent nodes."
type = number
}
variable "agent_nodepools" {
description = "Number of agent nodes."
type = map(any)