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: gcp/modules/gke/variables.tf
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,3 +96,19 @@ variable "labels" {
96
96
type=map(string)
97
97
default={}
98
98
}
99
+
100
+
# GCP manages this CIDR block when not provided as input
101
+
variable"master_ipv4_cidr_block" {
102
+
description="The IP range in CIDR notation to use for the hosted master network. This range must not overlap with any other ranges in use within the cluster's network."
103
+
type=string
104
+
default=null
105
+
nullable=true
106
+
}
107
+
108
+
# modify this to restrict public access to master endpoint from specific IP ranges
109
+
variable"master_authorized_networks_cidr_block" {
110
+
description="CIDR block to allow access to the Kubernetes master endpoint. Defaults to 0.0.0.0/0 to allow access from anywhere."
Copy file name to clipboardExpand all lines: test/gcp/fixtures/materialize/variables.tf
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -176,3 +176,18 @@ variable "license_key" {
176
176
default=null
177
177
sensitive=true
178
178
}
179
+
180
+
# GCP manages this CIDR block when not provided as input
181
+
variable"master_ipv4_cidr_block" {
182
+
description="The IP range in CIDR notation to use for the hosted master network. This range must not overlap with any other ranges in use within the cluster's network."
183
+
type=string
184
+
default=null
185
+
nullable=true
186
+
}
187
+
188
+
# modify this to restrict public access to master endpoint from specific IP ranges
189
+
variable"master_authorized_networks_cidr_block" {
190
+
description="CIDR block to allow access to the Kubernetes master endpoint"
0 commit comments