Merge branch 'master' into feat/calico

This commit is contained in:
Karim Naufal
2022-04-13 14:33:33 +02:00
committed by GitHub
11 changed files with 252 additions and 109 deletions

View File

@@ -20,26 +20,16 @@ variable "additional_public_keys" {
default = []
}
variable "location" {
description = "Default server location"
type = string
}
variable "network_region" {
description = "Default region for network"
type = string
}
variable "control_plane_server_type" {
description = "Default control plane server type"
variable "load_balancer_location" {
description = "Default load balancer location"
type = string
}
variable "control_plane_count" {
description = "Number of control plane nodes."
type = number
}
variable "load_balancer_type" {
description = "Default load balancer server type"
type = string
@@ -51,6 +41,12 @@ variable "load_balancer_disable_ipv6" {
default = false
}
variable "control_plane_nodepools" {
description = "Number of control plane nodes."
type = list(any)
default = []
}
variable "agent_nodepools" {
description = "Number of agent nodes."
type = list(any)
@@ -142,7 +138,12 @@ variable "cluster_name" {
variable "traefik_additional_options" {
type = list(string)
default = []
}
variable "placement_group_disable" {
type = bool
default = false
description = "Whether to disable placement groups"
}
variable "disable_network_policy" {