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
Copy file name to clipboardExpand all lines: modules/k8s_network/variables.tf
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,16 +15,19 @@ variable "pod_cidr" {
15
15
type=string
16
16
description="Pod CIDR Block to be used to assign POD IP Addresses."
17
17
default="100.65.0.0/16"
18
+
nullable=false
18
19
}
19
20
variable"service_cidr" {
20
21
type=string
21
22
description="Service CIDR Block used to assign cluster service IP addresses."
22
23
default="100.64.0.0/24"
24
+
nullable=false
23
25
}
24
26
variable"cni" {
25
27
type=string
26
28
description="Supported CNI type. Currently we only support Calico.* Calico - Calico CNI plugin as described in https://github.com/projectcalico/cni-plugin."
0 commit comments