generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdata_sources.tf
14 lines (13 loc) · 1006 Bytes
/
data_sources.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# ####################################################################################################### #
# Copyright (c) 2023 Oracle and/or its affiliates, All rights reserved. #
# Licensed under the Universal Permissive License v 1.0 as shown at https: //oss.oracle.com/licenses/upl. #
# Author: Cosmin Tudor #
# Author email: cosmin.tudor@oracle.com #
# Last Modified: Wed Nov 15 2023 #
# Modified by: Cosmin Tudor, email: cosmin.tudor@oracle.com #
# ####################################################################################################### #
data "oci_core_vcn" "existing_vcns" {
for_each = local.aux_one_dimension_processed_existing_vcns
#Required
vcn_id = each.value.vcn_id
}