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
|The difference between the VCN's netmask and the desired subnets' masks specified in the form of a map. The values of the map are used as the newbits parameter in the {uri-terraform-cidrsubnet}[cidrsubnet] Terraform function to calculate each subnet's mask.
188
188
|[source]
189
189
----
190
-
13
190
+
14
191
191
----
192
192
|
193
193
[source]
194
194
----
195
-
13
195
+
14
196
196
----
197
197
198
198
|`netnum`
199
199
|0-based index of the subnet when the VCN's CIDR is masked with the corresponding newbit value and specified in the form of a map. Used to define the boundaries of the subnet. The values of the map are used as the netnum parameter in the {uri-terraform-cidrsubnet}[cidrsubnet] Terraform function.
200
200
|[source]
201
201
----
202
-
32
202
+
0
203
203
----
204
204
|
205
205
[source]
206
206
----
207
-
32
207
+
0
208
208
----
209
209
210
210
|`notification_enabled`
@@ -280,6 +280,30 @@ tags = {
280
280
|true/false
281
281
|false
282
282
283
+
|`newbits`
284
+
|The difference between the VCN's netmask and the desired subnets' masks specified in the form of a map. The values of the map are used as the newbits parameter in the {uri-terraform-cidrsubnet}[cidrsubnet] Terraform function to calculate each subnet's mask.
285
+
|[source]
286
+
----
287
+
14
288
+
----
289
+
|
290
+
[source]
291
+
----
292
+
14
293
+
----
294
+
295
+
|`netnum`
296
+
|0-based index of the subnet when the VCN's CIDR is masked with the corresponding newbit value and specified in the form of a map. Used to define the boundaries of the subnet. The values of the map are used as the netnum parameter in the {uri-terraform-cidrsubnet}[cidrsubnet] Terraform function.
297
+
|[source]
298
+
----
299
+
0
300
+
----
301
+
|
302
+
[source]
303
+
----
304
+
0
305
+
----
306
+
283
307
|`notification_enabled`
284
308
|Whether to enable ONS notification for the operator host. *Do not enable for now*.
285
309
|true/false
@@ -320,6 +344,22 @@ tags = {
320
344
boot_volume_size=50
321
345
}`
322
346
347
+
|`operating_system_version`
348
+
|The Oracle Linux version.
349
+
|"8"
350
+
|"8"
351
+
352
+
|`ssh_private_key_path`
353
+
|path to ssh private key. This ssh key is used to authenticate and log into the bastion host. Must be the private key of the public key provided below. *Required* if bastion is enabled.
354
+
355
+
|
356
+
|None
357
+
358
+
|`ssh_public_key_path`
359
+
|path to ssh public key. The ssh key is used when provisioning the bastion host. Must be the public key of the private key provided above. *Required* if bastion is enabled.
0 commit comments