Skip to content

Commit 37b9b2c

Browse files
committed
fix: Correct flipped oci_core_vcn data source logic
Signed-off-by: Devon Crouse <[email protected]>
1 parent 59409b6 commit 37b9b2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module-network.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
33

44
data "oci_core_vcn" "oke" {
5-
count = coalesce(var.vcn_id, "none") != "none" ? 0 : 1
5+
count = coalesce(var.vcn_id, "none") != "none" ? 1 : 0
66
vcn_id = coalesce(var.vcn_id, "none")
77
}
88

0 commit comments

Comments
 (0)