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 42d8c47 commit f24e96aCopy full SHA for f24e96a
modules/oke/nodepools.tf
@@ -44,7 +44,8 @@ resource "oci_containerengine_node_pool" "nodepools" {
44
content {
45
cni_type = "OCI_VCN_IP_NATIVE"
46
max_pods_per_node = var.max_pods_per_node
47
- pod_nsg_ids = var.pod_nsgs
+ # pick the 1st pod nsg here until https://github.com/oracle/terraform-provider-oci/issues/1662 is clarified and resolved
48
+ pod_nsg_ids = element(var.pod_nsgs,0)
49
pod_subnet_ids = tolist([var.cluster_subnets["pods"]])
50
}
51
0 commit comments