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: network.tf
+6
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,12 @@ resource "aws_vpc" "quortex" {
32
32
# NOTE: The usage of the specific kubernetes.io/cluster/* resource tags below are required for EKS and Kubernetes to discover and manage networking resources.
Copy file name to clipboardexpand all lines: variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,12 @@ variable "vpc_name" {
20
20
default="quortex"
21
21
}
22
22
23
+
variable"vpc_secondary_cidrs" {
24
+
type=list(string)
25
+
description="IPv4 secondary CIDRs to add to the VPC."
26
+
default=[]
27
+
}
28
+
23
29
variable"cluster_name" {
24
30
type=string
25
31
description="The name of the EKS cluster. Will be used to set the kubernetes.io/cluster/<cluster-name> tag on the VPC and subnets. It is required for Kubernetes to discover them."
0 commit comments