-
Notifications
You must be signed in to change notification settings - Fork 211
/
variables-network.tf
282 lines (247 loc) · 9.37 KB
/
variables-network.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# Copyright (c) 2017, 2023 Oracle Corporation and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
variable "create_vcn" {
default = true
description = "Whether to create a Virtual Cloud Network."
type = bool
}
variable "vcn_name" {
default = null
description = "Display name for the created VCN. Defaults to 'oke' suffixed with the generated Terraform 'state_id' value."
type = string
}
variable "vcn_id" {
default = null
description = "Optional ID of existing VCN. Takes priority over vcn_name filter. Ignored when `create_vcn = true`."
type = string
}
variable "vcn_create_nat_gateway" {
default = "auto"
description = "Whether to create a NAT gateway with the VCN. Defaults to automatic creation when private network resources are expected to utilize it."
type = string
validation {
condition = contains(["never", "auto", "always"], var.vcn_create_nat_gateway)
error_message = "Accepted values are never, auto, or always"
}
}
variable "vcn_create_internet_gateway" {
default = "auto"
description = "Whether to create an internet gateway with the VCN. Defaults to automatic creation when public network resources are expected to utilize it."
type = string
validation {
condition = contains(["never", "auto", "always"], var.vcn_create_internet_gateway)
error_message = "Accepted values are never, auto, or always"
}
}
variable "vcn_create_service_gateway" {
default = "always"
description = "Whether to create a service gateway with the VCN. Defaults to always created."
type = string
validation {
condition = contains(["never", "auto", "always"], var.vcn_create_service_gateway)
error_message = "Accepted values are never, auto, or always"
}
}
variable "ig_route_table_id" {
default = null
description = "Optional ID of existing internet gateway in VCN."
type = string
}
variable "nat_route_table_id" {
default = null
description = "Optional ID of existing NAT gateway in VCN."
type = string
}
variable "create_drg" {
default = false
description = "Whether to create a Dynamic Routing Gateway and attach it to the VCN."
type = bool
}
variable "drg_display_name" {
default = null
description = "(Updatable) Name of the created Dynamic Routing Gateway. Does not have to be unique. Defaults to 'oke' suffixed with the generated Terraform 'state_id' value."
type = string
}
variable "drg_id" {
default = null
description = "ID of an external created Dynamic Routing Gateway to be attached to the VCN."
type = string
}
variable "drg_compartment_id" {
default = null
description = "Compartment for the DRG resource. Can be used to override network_compartment_id."
type = string
}
variable "drg_attachments" {
description = "DRG attachment configurations."
type = any
default = {}
}
variable "remote_peering_connections" {
description = "Map of parameters to add and optionally to peer to remote peering connections. Key-only items represent local acceptors and no peering attempted; items containing key and values represent local requestor and must have the OCID and region of the remote acceptor to peer to"
type = map(any)
default = {}
}
variable "internet_gateway_route_rules" {
default = null
description = "(Updatable) List of routing rules to add to Internet Gateway Route Table."
type = list(map(string))
}
variable "local_peering_gateways" {
default = null
description = "Map of Local Peering Gateways to attach to the VCN."
type = map(any)
}
variable "lockdown_default_seclist" {
default = true
description = "Whether to remove all default security rules from the VCN Default Security List."
type = bool
}
variable "nat_gateway_route_rules" {
default = null
description = "(Updatable) List of routing rules to add to NAT Gateway Route Table."
type = list(map(string))
}
variable "nat_gateway_public_ip_id" {
default = null
description = "OCID of reserved IP address for NAT gateway. The reserved public IP address needs to be manually created."
type = string
}
variable "subnets" {
default = {
bastion = { newbits = 13 }
operator = { newbits = 13 }
cp = { newbits = 13 }
int_lb = { newbits = 11 }
pub_lb = { newbits = 11 }
workers = { newbits = 4 }
pods = { newbits = 2 }
}
description = "Configuration for standard subnets. The 'create' parameter of each entry defaults to 'auto', creating subnets when other enabled components are expected to utilize them, and may be configured with 'never' or 'always' to force disabled/enabled."
type = map(object({
create = optional(string)
id = optional(string)
newbits = optional(string)
netnum = optional(string)
cidr = optional(string)
dns_label = optional(string)
}))
validation {
condition = alltrue([
for k, v in var.subnets : contains(["never", "auto", "always"], coalesce(v.create, "auto"))
])
error_message = "Accepted values for 'create' are 'never', 'auto', or 'always'."
}
validation {
condition = alltrue([
for v in flatten([for k, v in var.subnets : keys(v)]) : contains(["create", "id", "cidr", "netnum", "newbits", "dns_label"], v)
])
error_message = format("Invalid subnet configuration keys: %s", jsonencode(distinct([
for v in flatten([for k, v in var.subnets : keys(v)]) : v if !contains(["create", "id", "cidr", "netnum", "newbits", "dns_label"], v)
])))
}
}
variable "nsgs" {
default = {
bastion = {}
operator = {}
cp = {}
int_lb = {}
pub_lb = {}
workers = {}
pods = {}
}
description = "Configuration for standard network security groups (NSGs). The 'create' parameter of each entry defaults to 'auto', creating NSGs when other enabled components are expected to utilize them, and may be configured with 'never' or 'always' to force disabled/enabled."
type = map(object({
create = optional(string)
id = optional(string)
}))
validation {
condition = alltrue([
for k, v in values(var.nsgs) : contains(["never", "auto", "always"], coalesce(v.create, "auto"))
])
error_message = "Accepted values for 'create' are 'never', 'auto', or 'always'."
}
validation {
condition = alltrue([
for v in flatten([for k, v in var.nsgs : keys(v)]) : contains(["create", "id"], v)
])
error_message = format("Invalid NSG configuration keys: %s", jsonencode(distinct([
for v in flatten([for k, v in var.nsgs : keys(v)]) : v if !contains(["create", "id"], v)
])))
}
validation {
condition = alltrue([
for k, v in var.nsgs :
contains(["bastion", "operator", "cp", "int_lb", "pub_lb", "workers", "pods", "fss"], k)
])
error_message = format("Invalid NSG keys: %s", jsonencode([for k, v in var.nsgs : k
if !contains(["bastion", "operator", "cp", "int_lb", "pub_lb", "workers", "pods", "fss"], k)
]))
}
}
variable "vcn_cidrs" {
default = ["10.0.0.0/16"]
description = "The list of IPv4 CIDR blocks the VCN will use."
type = list(string)
}
variable "vcn_dns_label" {
default = null
description = "A DNS label for the VCN, used in conjunction with the VNIC's hostname and subnet's DNS label to form a fully qualified domain name (FQDN) for each VNIC within this subnet. Defaults to the generated Terraform 'state_id' value."
type = string
}
variable "assign_dns" {
default = true
description = "Whether to assign DNS records to created instances or disable DNS resolution of hostnames in the VCN."
type = bool
}
variable "allow_node_port_access" {
default = false
description = "Whether to allow access from worker NodePort range to load balancers."
type = bool
}
variable "allow_worker_internet_access" {
default = true
description = "Allow worker nodes to egress to internet. Required if container images are in a registry other than OCIR."
type = bool
}
variable "allow_pod_internet_access" {
default = true
description = "Allow pods to egress to internet. Ignored when cni_type != 'npn'."
type = bool
}
variable "allow_worker_ssh_access" {
default = false
description = "Whether to allow SSH access to worker nodes."
type = bool
}
variable "allow_bastion_cluster_access" {
default = false
description = "Whether to allow access to the Kubernetes cluster endpoint from the bastion host."
type = bool
}
variable "allow_rules_internal_lb" {
default = {}
description = "A map of additional rules to allow incoming traffic for internal load balancers."
type = any
}
variable "allow_rules_public_lb" {
default = {}
description = "A map of additional rules to allow incoming traffic for public load balancers."
type = any
}
variable "allow_rules_workers" {
default = {}
description = "A map of additional rules to allow traffic for the workers."
type = any
}
variable "control_plane_allowed_cidrs" {
default = []
description = "The list of CIDR blocks from which the control plane can be accessed."
type = list(string)
}
variable "enable_waf" {
description = "Whether to enable WAF monitoring of load balancers."
type = bool
default = false
}