We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf27e4 commit db75939Copy full SHA for db75939
modules/oke/main.tf
@@ -48,7 +48,13 @@ resource "oci_containerengine_node_pool" "oke_node_pool" {
48
}
49
50
size = var.oke_nodepool_size
51
+
52
+ node_pool_pod_network_option_details {
53
+ cni_type = var.cni_type
54
+ pod_subnet_ids = (var.cni_type == "OCI_VCN_IP_NATIVE") ? [var.subnet_id] : []
55
+ }
56
57
58
59
dynamic "node_shape_config" {
60
for_each = length(regexall("Flex", var.oke_nodepool_shape)) > 0 ? [1] : []
0 commit comments